drbob 9c6a3a7781 * Introduced new tests directory.
* added old serialiser tests (FAIL at the moment).
 * moved Makefile scripts to tests diectory.





git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3173 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-06-20 11:08:39 +00:00

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
###########################################################################