From a519e3c9ded2342df72d1aa885d0a2173cfbf1c4 Mon Sep 17 00:00:00 2001 From: Luke Bratch Date: Thu, 18 Apr 2019 02:14:56 +0200 Subject: Add a Makefile --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..be285b6 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +CC=gcc +DEPS = functions.h sockets.h + +%.o: %.c $(DEPS) + $(CC) -c -o $@ $< + +blabouncer: blabouncer.o functions.o sockets.o + $(CC) -o blabouncer blabouncer.o functions.o sockets.o -- cgit v1.2.3