aboutsummaryrefslogtreecommitdiffstats
path: root/old/glougloud/Makefile
diff options
context:
space:
mode:
authorLaurent Ghigonis <laurent@p1sec.com>2012-11-29 10:58:30 +0100
committerLaurent Ghigonis <laurent@p1sec.com>2012-11-29 10:58:30 +0100
commitb9decf4304d2204173a8d8a706e003cdde2b1bf7 (patch)
treed2a271e59d13cf1c01268931e79602f239a86ea4 /old/glougloud/Makefile
parentinclude event.h here, and also the default queue.h of the system instead of the (diff)
downloadglouglou-b9decf4304d2204173a8d8a706e003cdde2b1bf7.tar.xz
glouglou-b9decf4304d2204173a8d8a706e003cdde2b1bf7.zip
move glougloud to old
Diffstat (limited to 'old/glougloud/Makefile')
-rw-r--r--old/glougloud/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/old/glougloud/Makefile b/old/glougloud/Makefile
new file mode 100644
index 0000000..d37dde2
--- /dev/null
+++ b/old/glougloud/Makefile
@@ -0,0 +1,12 @@
+PROG = glougloud
+OBJS = glougloud.o server.o user.o util.o external/imsgev.o external/imsg-buffer.o external/imsg.o
+CFLAGS+=-Wall -g
+LDFLAGS=-lpcap -levent -lutil
+
+all:
+ make $(OBJS)
+ $(CC) $(OBJS) -o $(PROG) $(LDFLAGS)
+
+clean:
+ rm -f $(PROG) *~ *.o external/*.o
+