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