diff --git a/Makefile b/Makefile index 04b31fb..0e0deae 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,9 @@ CC=gcc CFLAGS=-Wall -O3 -g +%.o: %.c headers.h + $(CC) $(CFLAGS) -o $@ -c $< + dhtest: dhtest.o functions.o $(CC) dhtest.o functions.o -o dhtest