summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2010-01-11 21:11:14 +0100
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2010-01-11 21:11:14 +0100
commitcb673db642fa8fc2cbae7d84a44921a56e0c7d73 (patch)
tree36204160fc2b9d83d84cd4823f4ac9dad7ecbbc7 /contrib
parent3d55933aba1935c6b4c6fc93fe0dde6e359ead63 (diff)
Adding a Makefile for the contrib binaries.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/Makefile11
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)