summaryrefslogtreecommitdiff
path: root/other/fizzbounce/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'other/fizzbounce/Makefile')
-rw-r--r--other/fizzbounce/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/other/fizzbounce/Makefile b/other/fizzbounce/Makefile
new file mode 100644
index 0000000..98544a4
--- /dev/null
+++ b/other/fizzbounce/Makefile
@@ -0,0 +1,15 @@
1
2CFILES=client.c main.c network.c relay.c
3LIBS=-lpthread
4CC=gcc
5CFLAGS=-g -DDEBUG
6PREFIX=/usr/local
7
8all: fizzbounce
9
10clean: rm -f *.o fizzbounce
11
12fizzbounce:
13 ${CC} -o fizzbounce ${CFILES} ${CFLAGS} ${LIBS}
14
15