diff options
-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) |