mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-02-18 13:54:07 -05:00
28 lines
677 B
Makefile
28 lines
677 B
Makefile
![]() |
|
||
|
# determine which operating system
|
||
|
#
|
||
|
###########################################################################
|
||
|
#Define OS.
|
||
|
#
|
||
|
OS = Linux
|
||
|
#OS = MacOSX
|
||
|
#OS = Cygwin
|
||
|
#OS = Win # MinGw.
|
||
|
###########################################################################
|
||
|
|
||
|
ifeq ($(OS),Linux)
|
||
|
include $(RS_TOP_DIR)/tests/scripts/config-linux.mk
|
||
|
else
|
||
|
ifeq ($(OS),MacOSX)
|
||
|
include $(RS_TOP_DIR)/tests/scripts/config-macosx.mk
|
||
|
else
|
||
|
ifeq ($(OS),Cygwin)
|
||
|
include $(RS_TOP_DIR)/tests/scripts/config-cygwin.mk
|
||
|
else
|
||
|
include $(RS_TOP_DIR)/tests/scripts/config-mingw.mk
|
||
|
endif
|
||
|
endif
|
||
|
endif
|
||
|
|
||
|
###########################################################################
|