diff --git a/crnlib/Makefile b/crnlib/Makefile index 9a9de187..329ec732 100644 --- a/crnlib/Makefile +++ b/crnlib/Makefile @@ -1,3 +1,6 @@ +.DEFAULT_GOAL := all +.PHONY: all clean + COMPILE_OPTIONS = -O3 -fomit-frame-pointer -ffast-math -fno-math-errno -g -fno-strict-aliasing -Wall -Wno-unused-value -Wno-unused -march=core2 LINKER_OPTIONS = -lpthread -g @@ -94,3 +97,5 @@ corpus_test.o: ../crunch/corpus_test.cpp crunch: $(OBJECTS) crunch.o corpus_gen.o corpus_test.o g++ $(OBJECTS) crunch.o corpus_gen.o corpus_test.o -o crunch $(LINKER_OPTIONS) +clean: + rm $(OBJECTS) crunch.o corpus_gen.o corpus_test.o crunch