aboutsummaryrefslogtreecommitdiffstats
path: root/libglouglou/Makefile
diff options
context:
space:
mode:
authorLaurent Ghigonis <laurent@p1sec.com>2012-07-21 21:37:03 +0200
committerLaurent Ghigonis <laurent@p1sec.com>2012-07-21 21:37:03 +0200
commit83ddce2dcad62b7104585fd0d545aac897248329 (patch)
treea470c5c66a4f13b36f1259684f478b231623e117 /libglouglou/Makefile
parenttodo++ (diff)
downloadglouglou-83ddce2dcad62b7104585fd0d545aac897248329.tar.xz
glouglou-83ddce2dcad62b7104585fd0d545aac897248329.zip
add libglouglou, for now only containing libglouglou.h, containing the
packet structure used to communicate between client and server
Diffstat (limited to 'libglouglou/Makefile')
-rw-r--r--libglouglou/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/libglouglou/Makefile b/libglouglou/Makefile
new file mode 100644
index 0000000..f1aa0ba
--- /dev/null
+++ b/libglouglou/Makefile
@@ -0,0 +1,13 @@
+PREFIX=/usr/local
+INCLUDEDIR=$(PREFIX)/include
+LIBNAME=libglouglou
+
+all:
+ @echo "$(LIBNAME) can only be installed, do"
+ @echo "sudo make install"
+
+install:
+ @echo "installation of $(LIBNAME)"
+ mkdir -p $(INCLUDEDIR)
+ install -m 0644 $(LIBNAME).h $(INCLUDEDIR)
+