mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-16 03:14:31 -05:00
23 lines
542 B
Makefile
23 lines
542 B
Makefile
|
|
||
|
# determine which operating system
|
||
|
#
|
||
|
###########################################################################
|
||
|
#Define OS.
|
||
|
#
|
||
|
OS = Linux
|
||
|
#OS = Cygwin
|
||
|
#OS = Win # MinGw.
|
||
|
###########################################################################
|
||
|
|
||
|
ifeq ($(OS),Linux)
|
||
|
include $(RS_TOP_DIR)/scripts/config-linux.mk
|
||
|
else
|
||
|
ifeq ($(OS),Cygwin)
|
||
|
include $(RS_TOP_DIR)/scripts/config-cygwin.mk
|
||
|
else
|
||
|
include $(RS_TOP_DIR)/scripts/config-mingw.mk
|
||
|
endif
|
||
|
endif
|
||
|
|
||
|
###########################################################################
|