diff options
author | Luke Bratch <luke@bratch.co.uk> | 2019-05-11 19:03:57 +0100 |
---|---|---|
committer | Luke Bratch <luke@bratch.co.uk> | 2019-05-11 19:03:57 +0100 |
commit | 0559bff00a6be2054194632c3543bf62af1fb56f (patch) | |
tree | f007a35d1d7af9a7fa1166831b982c84111baad7 /Makefile | |
parent | c46d01b5afd2da4779efb2700469037eca6122be (diff) |
Add the ability to replay messages from a replay log file. (No replay log file writing yet.)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,8 +1,8 @@ CC=gcc -DEPS = functions.h sockets.h config.h +DEPS = functions.h sockets.h config.h replay.h %.o: %.c $(DEPS) $(CC) -Wall -Wextra -c -o $@ $< -blabouncer: blabouncer.o functions.o sockets.o config.o - $(CC) -Wall -Wextra -o blabouncer blabouncer.o functions.o sockets.o config.o +blabouncer: blabouncer.o functions.o sockets.o config.o replay.o + $(CC) -Wall -Wextra -o blabouncer blabouncer.o functions.o sockets.o config.o replay.o |