aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunk@stsci.edu>2011-04-05 15:52:51 -0400
committerJoseph Hunkeler <jhunk@stsci.edu>2011-04-05 15:52:51 -0400
commita3cdfe38ce0d9f5804270ce5a5d573b7acea6274 (patch)
tree0bff3f832f071ea90c08025e17d00a3a689c3666
parent9d79c3752e7f412a626c8d84329f9d74078dd45a (diff)
downloadduser-a3cdfe38ce0d9f5804270ce5a5d573b7acea6274.tar.gz
Removed libtre dependency
-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)