aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 24ef5c3..a2dacb6 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ CC=gcc
CFLAGS=-g -Wall -Wextra
LDFLAGS=-ltre
PROG="duser"
-SRC=duser.c
+SRC=duser.c duser.h log.c
all:
$(CC) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(SRC)