2 ARCH := $(shell uname -m)
3 # TODO: stb_truetype doesn't compile with some of these warnings.
4 CXX = g++ -std=gnu++0x -g -Wall -Werror -Wshadow -pedantic -rdynamic
6 OBJ = log.o real.o bezier.o document.o objectrenderer.o view.o screen.o vfpu.o graphicsbuffer.o framebuffer.o shaderprogram.o stb_truetype.o gl_core44.o add_digits_asm.o sub_digits_asm.o mul_digits_asm.o arbint.o
7 LIB_x86_64 = ../contrib/lib/libSDL2-2.0.so.0 -lGL
8 LIB_i386 = ../contrib/lib32/libSDL2-2.0.so.0 -lGL
10 MAINRPATH_x86_64 = -Wl,-rpath,'$$ORIGIN/../contrib/lib'
11 MAINRPATH_i386 = -Wl,-rpath,'$$ORIGIN/../contrib/lib32'
12 TESTRPATH_x86_64 = -Wl,-rpath,'$$ORIGIN/../../contrib/lib'
13 TESTRPATH_i386 = -Wl,-rpath,'$$ORIGIN/../../contrib/lib32'
14 OBJPATHS = $(OBJ:%=../obj/%)
15 DEPS := $(OBJPATHS:%.o=%.d)
16 CFLAGS_x86_64 := -I../contrib/include/SDL2 -I`pwd`
17 CFLAGS_i386 := -I../contrib/include32/SDL2 -I`pwd`
21 MAINRPATH := $(MAINRPATH_$(ARCH))
22 TESTRPATH := $(TESTRPATH_$(ARCH))
23 CFLAGS := $(CFLAGS_$(ARCH))
36 single : DEF = -DREAL=0
39 double : DEF = -DREAL=1
42 demo : $(BIN) ../tools/stream_plot.py
44 $(RM) ../data/performance.dat
45 ./ipdf | tee ../data/performance.dat | ../tools/stream_plot.py 2>/dev/null
47 movie : $(BIN) ../tools/stream_plot.py
49 $(RM) ../data/performance.dat
50 $(RM) ../data/movie.ogv
51 ./ipdf | tee ../data/performance.dat | ../tools/stream_plot.py 2>/dev/null & recordmydesktop --fps 10 --on-the-fly-encoding -o ../data/movie.ogv
53 # The tests will compile with the default REAL definition
54 # To change that you can run as `make DEFS="REAL=X" tests/<target>` where X is your chosen type
55 # But remember to make clean first.
56 tests/% : tests/%.cpp ../obj/tests/%.o $(LINKOBJ)
57 $(CXX) -o $@.test $(LINKOBJ) ../obj/$@.o $(LIB) $(TESTRPATH)
61 runtests : tests/runtests.sh
62 cd tests; ./runtests.sh
65 $(BIN) : $(LINKOBJ) ../obj/$(MAIN)
68 $(CXX) -o $(BIN) $(LINKOBJ) ../obj/$(MAIN) $(LIB) $(MAINRPATH)
72 ../obj/%.o : %.cpp main.h
74 $(CXX) $(CFLAGS) $(DEF) -c -MMD -o $@ $<
76 ../obj/%_asm.o : %_asm.s main.h
86 $(RM) $(BIN) $(DEPS) $(LINKOBJ) ../obj/$(MAIN)