diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -3,10 +3,13 @@ include config.mk .POSIX: .SUFFIXES: .c .o +TOXSRC = $(shell find toxcore/toxcore toxcore/toxav toxcore/toxencryptsave -name '*.c') + HDR = arg.h config.h readpassphrase.h util.h LIB = \ eprintf.o \ - readpassphrase.o + readpassphrase.o \ + $(TOXSRC:.c=.o) SRC = \ ratox.c @@ -21,6 +24,8 @@ binlib: util.a bin: $(BIN) +$(BIN): util.a $(OBJ) + $(OBJ): $(HDR) config.mk config.h: |