aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3267228..3fcbd91 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ CC=gcc
CFLAGS=-O2 -Wall -Wextra
LDFLAGS=
PROG="duser"
-SRC=duser.c duser.h user.c util.c log.c cfg.c
+SRC=duser.c user.c util.c log.c cfg.c
all:
$(CC) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(SRC)
strip -s $(PROG)