diff options
Diffstat (limited to 'other/fizzbounce/Makefile')
| -rw-r--r-- | other/fizzbounce/Makefile | 15 |
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 | |||
| 2 | CFILES=client.c main.c network.c relay.c | ||
| 3 | LIBS=-lpthread | ||
| 4 | CC=gcc | ||
| 5 | CFLAGS=-g -DDEBUG | ||
| 6 | PREFIX=/usr/local | ||
| 7 | |||
| 8 | all: fizzbounce | ||
| 9 | |||
| 10 | clean: rm -f *.o fizzbounce | ||
| 11 | |||
| 12 | fizzbounce: | ||
| 13 | ${CC} -o fizzbounce ${CFILES} ${CFLAGS} ${LIBS} | ||
| 14 | |||
| 15 | |||
