diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2010-01-11 22:51:14 +0100 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2010-01-11 22:51:14 +0100 |
commit | 2ca829b9301b7caae80fa3b8192c1fc7a8f0d8eb (patch) | |
tree | 66ad889c67370d4645263d401e9a16b83c005158 /contrib/Makefile | |
parent | cb673db642fa8fc2cbae7d84a44921a56e0c7d73 (diff) |
Adding the clean target and the CPP flags.
Diffstat (limited to 'contrib/Makefile')
-rw-r--r-- | contrib/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/Makefile b/contrib/Makefile index 3dcf1eb..c83ca22 100644 --- a/contrib/Makefile +++ b/contrib/Makefile @@ -1,6 +1,7 @@ TARGETS = paq LD = g++ +CPPFLAGS = -O2 PAQ_LIBS = -l boost_iostreams -l boost_system -l boost_filesystem @@ -9,3 +10,6 @@ all: $(TARGETS) paq: paq.o $(LD) -o $@ $^ $(PAQ_LIBS) + +clean: + rm -f *.o $(TARGETS) |