aboutsummaryrefslogtreecommitdiff
path: root/Makefile.solaris
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunk@stsci.edu>2011-04-21 09:28:11 -0400
committerJoseph Hunkeler <jhunk@stsci.edu>2012-05-25 14:20:35 -0400
commitdec48a3ca471abfb73a883fb6c0d6bb05af03f76 (patch)
tree0dcfe5679082cb623c058a1bcf4ad095eb568260 /Makefile.solaris
parentf18218e0571347d5718021fc65b60018bb1b5625 (diff)
downloadduser-dec48a3ca471abfb73a883fb6c0d6bb05af03f76.tar.gz
Removed duser.h from source list
Diffstat (limited to 'Makefile.solaris')
-rw-r--r--Makefile.solaris6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.solaris b/Makefile.solaris
index 7660669..a7323a3 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 util.c user.c duser.h log.c cfg.c
+SRC=compat.c duser.c util.c user.c log.c cfg.c
all:
$(CC) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(SRC)
- strip -s $(PROG)
+ strip -x $(PROG)
clean:
rm -rf $(PROG)