Tyro/Makefile

135 lines
3.2 KiB
Makefile
Raw Normal View History

2015-04-29 17:03:15 -04:00
SOURCES = $(wildcard include/**/*.cpp include/*.cpp src/base/**/*.cpp)
OBJECTS = $(patsubst %.cpp,%.o, $(SOURCES))
2015-04-22 21:06:35 -04:00
TYRO_LIB = build/Tyro.a
JSON_FILES = $(patsubst config/%.json,%.json, $(wildcard config/*.json))
2015-04-29 17:03:15 -04:00
PROGRAM_SRC = $(wildcard src/*.cpp src/widgets/*.cpp src/settings/*.cpp)
PROGRAM = build/Tyro
2015-04-16 22:07:51 -04:00
PROGRAM_OBJECTS = $(patsubst %.cpp,%.o, $(PROGRAM_SRC))
2015-04-16 22:07:51 -04:00
WX_RES = $(shell wx-config --rescomp)
2015-04-30 17:10:26 -04:00
WX_CXXFLAGS = $(shell wx-config --cxxflags)
2015-04-16 22:07:51 -04:00
2015-04-29 13:10:52 -04:00
DEV_CXXFLAGS = -g -Wall -Wextra -DDEBUG
CXXFLAGS = -Os -DNDEBUG
2015-04-16 22:07:51 -04:00
2015-04-16 13:16:36 -04:00
TEST_SRC = $(wildcard tests/*.cpp)
TESTS = $(patsubst %.cpp,%,$(TEST_SRC))
2015-04-29 13:10:52 -04:00
LDLIBS =
2015-04-16 22:07:51 -04:00
OS ?= $(shell uname -s)
2015-04-16 13:16:36 -04:00
2015-04-29 13:10:52 -04:00
# Get static version of libs to link to on platforms that support it
ifneq ($(OS),Linux)
WX_LDLIBS = $(shell wx-config --static --libs base core aui stc adv)
else
WX_LDLIBS = $(shell wx-config --libs base core aui stc adv)
endif
2015-04-22 21:06:35 -04:00
2015-04-29 13:10:52 -04:00
# Platform compiler flags
ifeq ($(OS),Darwin)
CXX = clang++ -std=c++98 -mmacosx-version-min=10.5
LDLIBS += /usr/local/lib/libssh2.a
2015-04-22 21:06:35 -04:00
endif
ifeq ($(OS),Linux)
2015-04-22 11:06:25 -04:00
CXX += -std=c++11
LDLIBS += -lssh2
2015-04-22 09:19:09 -04:00
endif
2015-04-16 22:07:51 -04:00
ifeq ($(OS),Windows_NT)
2015-04-29 13:10:52 -04:00
CXXFLAGS = -DNDEBUG -DSTATIC_BUILD -static
2015-04-22 21:06:35 -04:00
CXX += -I/include -DWIN32
LDLIBS += -L/lib -lwsock32 -lssh2
2015-04-16 22:07:51 -04:00
endif
2015-04-16 13:16:36 -04:00
2015-04-29 13:10:52 -04:00
CXX += -I include -I.
2015-04-22 21:06:35 -04:00
all: build json_wrapper $(TYRO_LIB) $(PROGRAM)
2015-04-29 17:03:15 -04:00
dev: CXXFLAGS = $(DEV_CXXFLAGS)
dev: all
json_wrapper: json_wrapper_build
$(foreach var, $(JSON_FILES), config/json2c config/$(var) $(patsubst %.json,config/%_json.h,$(var)) $(patsubst %.json,%_json,$(var));)
json_wrapper_build:
$(CC) config/json2c.c -o config/json2c
build:
@mkdir -p build
2015-04-28 09:55:43 -04:00
$(TYRO_LIB): build $(OBJECTS)
ar rcs $@ $(OBJECTS)
ranlib $@
2015-04-29 13:10:52 -04:00
$(PROGRAM): CXXFLAGS += $(WX_CXXFLAGS)
2015-04-07 20:19:05 -04:00
$(PROGRAM):
2015-04-28 09:55:43 -04:00
$(CXX) $(CXXFLAGS) $(PROGRAM_SRC) $(TYRO_LIB) $(WX_LDLIBS) $(LDLIBS) -o $(PROGRAM)
2015-04-28 09:55:43 -04:00
lib: $(OBJECTS) $(TYRO_LIB)
run:
./build/Tyro
2015-04-22 10:09:43 -04:00
run-grind:
2015-04-28 09:55:43 -04:00
valgrind $(PROGRAM)
2015-04-22 10:09:43 -04:00
# Make optimized and striped executable
2015-04-28 09:55:43 -04:00
release:
2015-04-16 22:07:51 -04:00
ifeq ($(OS),Darwin)
2015-04-29 13:10:52 -04:00
make all
2015-04-28 09:55:43 -04:00
strip -SXx $(PROGRAM)
2015-04-16 13:16:36 -04:00
make Tyro.app
endif
2015-04-16 22:07:51 -04:00
ifeq ($(OS),Windows_NT)
make exe
endif
2015-04-28 09:55:43 -04:00
ifeq ($(OS),Linux)
make all
strip -SXx $(PROGRAM)
endif
2015-04-16 22:07:51 -04:00
2015-04-22 10:09:43 -04:00
# Windows resource linking
2015-04-16 22:07:51 -04:00
msw_resource:
$(WX_RES) resources/platform/msw/resource.rc -O coff -o resource.res
exe: LDLIBS += resource.res
2015-04-28 09:55:43 -04:00
exe: json_wrapper_build json_wrapper $(TYRO_LIB)
exe: msw_resource $(PROGRAM)
2015-04-22 10:09:43 -04:00
2015-04-29 13:10:52 -04:00
# OS X application bundle
Tyro.app: CXXFLAGS += -static
Tyro.app: all
2015-04-22 21:06:35 -04:00
SetFile -t APPL $(TYRO_LIB)
2015-04-29 13:10:52 -04:00
-mkdir -p build/Tyro.app
-mkdir -p build/Tyro.app/Contents
-mkdir -p build/Tyro.app/Contents/MacOS
-mkdir -p build/Tyro.app/Contents/Resources
-mkdir -p build/Tyro.app/Contents/Resources/English.lproj
cp resources/platform/osx/Info.plist build/Tyro.app/Contents/
echo -n 'APPL????' > build/Tyro.app/Contents/PkgInfo
cp build/Tyro build/Tyro.app/Contents/MacOS/Tyro
cp resources/platform/osx/tyro.icns build/Tyro.app/Contents/Resources/
2015-04-22 21:06:35 -04:00
$(TESTS): $(TYRO_LIB)
2015-04-29 17:03:15 -04:00
$(foreach var, $(TEST_SRC), $(CXX) $(CXXFLAGS) $(var) $(TYRO_LIB) $(WX_LDLIBS) $(LDLIBS) -o $(patsubst %.cpp,%, $(var));)
2015-04-22 21:06:35 -04:00
.PHONY: tests
tests: $(TESTS)
sh ./tests/runtests.sh
clean:
2015-04-16 22:07:51 -04:00
rm -f *.res
2015-04-15 09:56:00 -04:00
rm -f config/json2c
2015-04-16 22:07:51 -04:00
rm -f config/json2c.exe
2015-04-15 09:56:00 -04:00
rm -f config/*_json.h
2015-04-16 22:07:51 -04:00
rm -rf *.o
2015-04-29 13:10:52 -04:00
rm -rf build/Tyro.app
2015-04-22 21:06:35 -04:00
rm -rf build $(OBJECTS) $(PROGRAM) $(TYRO_LIB) $(TESTS)
find . -name "*.gc*" -exec rm {} \;
rm -rf `find . -name "*.dSYM" -print`