mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
80f4686100
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@791 b45a01b8-16f6-495d-af2f-9b41ad6348cc
28 lines
653 B
Makefile
28 lines
653 B
Makefile
|
|
# determine which operating system
|
|
#
|
|
###########################################################################
|
|
#Define OS.
|
|
#
|
|
OS = Linux
|
|
#OS = MacOSX
|
|
#OS = Cygwin
|
|
#OS = Win # MinGw.
|
|
###########################################################################
|
|
|
|
ifeq ($(OS),Linux)
|
|
include $(RS_TOP_DIR)/scripts/config-linux.mk
|
|
else
|
|
ifeq ($(OS),MacOSX)
|
|
include $(RS_TOP_DIR)/scripts/config-macosx.mk
|
|
else
|
|
ifeq ($(OS),Cygwin)
|
|
include $(RS_TOP_DIR)/scripts/config-cygwin.mk
|
|
else
|
|
include $(RS_TOP_DIR)/scripts/config-mingw.mk
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
###########################################################################
|