Tester for exploring the mapping of a float to a real
[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 framebuffer.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
35 all : $(BIN)
36
37 single : DEF = -DREAL=0
38 single : $(BIN)
39
40 double : DEF = -DREAL=1
41 double : $(BIN)
42
43 # The tests will compile with the default REAL definition
44 # To change that you can run as `make DEFS="REAL=X" tests/<target>` where X is your chosen type
45 # But remember to make clean first.
46 tests/% : tests/%.cpp ../obj/tests/%.o $(LINKOBJ)
47         $(CXX) -o [email protected] $(LINKOBJ) ../obj/[email protected] $(LIB) $(TESTRPATH)
48
49 -include $(DEPS)
50
51 runtests : tests/runtests.sh
52         cd tests; ./runtests.sh
53
54
55 $(BIN) : $(LINKOBJ) ../obj/$(MAIN)
56         echo $(LINKOBJ)
57         @mkdir -p $(dir $@)
58         $(CXX) -o $(BIN) $(LINKOBJ) ../obj/$(MAIN) $(LIB) $(MAINRPATH)
59
60 -include $(DEPS)
61
62 ../obj/%.o : %.cpp
63         @mkdir -p $(dir $@)
64         $(CXX) $(CFLAGS) $(DEF) -c -MMD -o $@ $<
65
66 -include $(DEPS)
67
68 clean_bin :
69         $(RM) $(BIN)
70
71 clean :
72         $(RM) $(BIN) $(DEPS) $(LINKOBJ) ../obj/$(MAIN)
73         $(RM) tests/*~
74         $(RM) tests/*.test
75         $(RM) tests/*.out
76         $(RM) tests/*.err
77         
78
79 clean_full: clean
80         $(RM) *.*~
81         $(RM) *~
82
83
84
85         

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