From cb673db642fa8fc2cbae7d84a44921a56e0c7d73 Mon Sep 17 00:00:00 2001 From: "Nicolas \"Pixel\" Noble" Date: Mon, 11 Jan 2010 21:11:14 +0100 Subject: Adding a Makefile for the contrib binaries. --- contrib/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 contrib/Makefile (limited to 'contrib/Makefile') 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) -- cgit v1.2.3