summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a8b1656..d39e26c 100644
--- a/Makefile
+++ b/Makefile
@@ -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: