diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2010-01-11 21:11:14 +0100 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2010-01-11 21:11:14 +0100 |
commit | cb673db642fa8fc2cbae7d84a44921a56e0c7d73 (patch) | |
tree | 36204160fc2b9d83d84cd4823f4ac9dad7ecbbc7 /contrib | |
parent | 3d55933aba1935c6b4c6fc93fe0dde6e359ead63 (diff) |
Adding a Makefile for the contrib binaries.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/contrib/Makefile b/contrib/Makefile new file mode 100644 index 0000000..3dcf1eb --- /dev/null +++ b/contrib/Makefile @@ -0,0 +1,11 @@ +TARGETS = paq + +LD = g++ + +PAQ_LIBS = -l boost_iostreams -l boost_system -l boost_filesystem + +all: $(TARGETS) + + +paq: paq.o + $(LD) -o $@ $^ $(PAQ_LIBS) |