diff options
author | Joseph Hunkeler <jhunk@stsci.edu> | 2011-04-20 23:48:07 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunk@stsci.edu> | 2011-04-20 23:48:07 -0400 |
commit | c7cd57b16094e102b999daa01f4fcffcd92bf5ba (patch) | |
tree | ef6b569117b112a4ab7f3f72a27a0466c570ec59 | |
parent | 36a352c6bbe227ab9e6d6e1508827a87a48fe06c (diff) | |
download | duser-c7cd57b16094e102b999daa01f4fcffcd92bf5ba.tar.gz |
Stripped binaries
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | Makefile.solaris | 6 |
2 files changed, 5 insertions, 5 deletions
@@ -2,10 +2,10 @@ CC=gcc CFLAGS=-O2 -Wall -Wextra LDFLAGS= PROG="duser" -SRC=duser.c duser.h log.c cfg.c +SRC=duser.c duser.h user.c util.c log.c cfg.c all: $(CC) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(SRC) - + strip -s $(PROG) clean: rm -rf $(PROG) diff --git a/Makefile.solaris b/Makefile.solaris index 03d8b3d..7660669 100644 --- a/Makefile.solaris +++ b/Makefile.solaris @@ -1,10 +1,10 @@ CC=gcc -CFLAGS=-O2 -Wextra -Wall -D_NLINUX_ +CFLAGS=-O2 -Wextra -Wall -D_NLINUX LDFLAGS= PROG="duser" -SRC=compat.c duser.c duser.h log.c cfg.c +SRC=compat.c duser.c util.c user.c duser.h log.c cfg.c all: $(CC) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(SRC) - + strip -s $(PROG) clean: rm -rf $(PROG) |