0b3be8535df1b66834cc2b42f7937f6e8c952fd4
[ipdf/code.git] / src / Makefile
1 #Makefile
2 ARCH := $(shell uname -m)
3 # TODO: stb_truetype doesn't compile with some of these warnings.
4 CXX = g++ -std=gnu++0x -g
5 # -Wall -Werror -Wshadow -pedantic
6 MAIN = main.o
7 OBJ = log.o real.o document.o view.o screen.o vfpu.o graphicsbuffer.o stb_truetype.o
8 LIB_x86_64 = ../contrib/lib/libSDL2-2.0.so.0 -lGL
9 LIB_i386 = ../contrib/lib32/libSDL2-2.0.so.0 -lGL
10
11 MAINRPATH_x86_64 = -Wl,-rpath,'$$ORIGIN/../contrib/lib'
12 MAINRPATH_i386 = -Wl,-rpath,'$$ORIGIN/../contrib/lib32'
13 TESTRPATH_x86_64 = -Wl,-rpath,'$$ORIGIN/../../contrib/lib'
14 TESTRPATH_i386 = -Wl,-rpath,'$$ORIGIN/../../contrib/lib32'
15 OBJPATHS = $(OBJ:%=../obj/%)
16 DEPS := $(OBJPATHS:%.o=%.d)
17 CFLAGS_x86_64 := -I../contrib/include/SDL2 -I`pwd`
18 CFLAGS_i386 := -I../contrib/include32/SDL2 -I`pwd`
19
20
21 LIB := $(LIB_$(ARCH))
22 MAINRPATH := $(MAINRPATH_$(ARCH))
23 TESTRPATH := $(TESTRPATH_$(ARCH))
24 CFLAGS := $(CFLAGS_$(ARCH))
25
26 DEF = -DREAL=1
27
28 LINKOBJ = $(OBJPATHS)
29
30 RM = rm -f
31 BIN = ../bin/ipdf
32
33
34 all : $(BIN)
35
36 single : DEF = -DREAL=0
37 single : $(BIN)
38
39 double : DEF = -DREAL=1
40 double : $(BIN)
41
42 # The tests will compile with the default REAL definition
43 # To change that you can run as `make DEFS="REAL=X" tests/<target>` where X is your chosen type
44 # But remember to make clean first.
45 tests/% : tests/%.cpp ../obj/tests/%.o $(LINKOBJ)
46         $(CXX) -o [email protected] $(LINKOBJ) ../obj/[email protected] $(LIB) $(TESTRPATH)
47
48 runtests : tests/runtests.sh
49         cd tests; ./runtests.sh
50
51
52 $(BIN) : $(LINKOBJ) ../obj/$(MAIN)
53         @mkdir -p $(dir $@)
54         $(CXX) -o $(BIN) $(LINKOBJ) ../obj/$(MAIN) $(LIB) $(MAINRPATH)
55
56 ../obj/%.o : %.cpp
57         @mkdir -p $(dir $@)
58         $(CXX) $(CFLAGS) $(DEF) -c -MMD -o $@ $<
59
60 -include $(DEPS)
61
62 clean_bin :
63         $(RM) $(BIN)
64
65 clean :
66         $(RM) $(BIN) $(DEPS) $(LINKOBJ) ../obj/$(MAIN)
67         $(RM) tests/*~
68         $(RM) tests/*.test
69         $(RM) tests/*.out
70         $(RM) tests/*.err
71         
72
73 clean_full: clean
74         $(RM) *.*~
75         $(RM) *~
76
77
78
79         

UCC git Repository :: git.ucc.asn.au