school/cs235/lab08/Makefile

32 lines
538 B
Makefile

CXXFLAGS= -Wall -g -std=c++0x
OBJECTS=Factory.o qstest.o sorter.o pwnd.o ignoreme.a
EXE=main
all: pwnd.o $(EXE)
$(EXE): $(OBJECTS)
$(CXX) $(CXXFLAGS) $(OBJECTS) -o $@
test: test.cpp qstest.o sorter.o
rtest: test
./test
Factory.o: Factory.cpp Factory.h
qstest.o: qstest.cpp qstest.h
sorter.o: sorter.cpp sorter.h
pwnd.o: pwnd.c
run: main
./main
clean:
@rm -vf *.o
@rm -vf $(EXE)
@rm -vf *.1
@rm -vf *.0
@rm -vf test
@rm -rvf *.dSYM
drun: main
gdb ./main
valgrind: $(EXE)
valgrind --tool=memcheck --leak-check=yes ./$(EXE)