diff options
author | Luke Bratch <luke@bratch.co.uk> | 2019-04-18 02:14:56 +0200 |
---|---|---|
committer | Luke Bratch <luke@bratch.co.uk> | 2019-04-18 02:14:56 +0200 |
commit | a519e3c9ded2342df72d1aa885d0a2173cfbf1c4 (patch) | |
tree | c3af43c6edf8dba9997ee02050239a80f531ef2d | |
parent | 84b3f43a97da2b305cfa5c620aceec543168f6bc (diff) |
Add a Makefile
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
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 |