removed unneeded stuff from makefile and added debug cflags
[MicroTrace.git] / Makefile
1 .SUFFIXES: .cxx .a
2
3 all: MicroTrace
4
5 CC = g++
6 CFLAGS = -O3 -Wall -g -O0
7
8 OBJ = MicroTrace.o\
9 Vec3f.o\
10 Camera.o\
11 PerspectiveCamera.o\
12 Image.o\
13 Ray.o
14
15 %.o: %.cxx *.hxx
16 $(CC) $(CFLAGS) -c $< -o $@
17
18 MicroTrace: $(OBJ)
19
20 clean:
21 rm *.o MicroTrace
This page took 0.044069 seconds and 5 git commands to generate.