diff options
author | Joseph Hunkeler <jhunk@stsci.edu> | 2011-04-05 15:52:51 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunk@stsci.edu> | 2012-05-25 14:20:34 -0400 |
commit | 7b6e60b937717518cc770b2523f1291ea34b6af8 (patch) | |
tree | 0bff3f832f071ea90c08025e17d00a3a689c3666 /Makefile | |
parent | 316fd856bd42d58b86d87ead854d9f8730022136 (diff) | |
download | duser-7b6e60b937717518cc770b2523f1291ea34b6af8.tar.gz |
Removed libtre dependency
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |