diff options
author | Alan Brault <alan.brault@incruentatus.net> | 2011-05-02 12:26:56 -0400 |
---|---|---|
committer | Alan Brault <alan.brault@incruentatus.net> | 2011-05-02 12:27:43 -0400 |
commit | 94e4efb2a769f18944d922f5a5e1567116635acf (patch) | |
tree | 2d7b488a762a64559e58ad5de7630b1c3510362c /Makefile.static | |
parent | 255755cb2a3abf34440792748325c98c9a61f766 (diff) | |
download | duser-94e4efb2a769f18944d922f5a5e1567116635acf.tar.gz |
More autotools migration
Diffstat (limited to 'Makefile.static')
-rw-r--r-- | Makefile.static | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Makefile.static b/Makefile.static deleted file mode 100644 index 8f82d92..0000000 --- a/Makefile.static +++ /dev/null @@ -1,11 +0,0 @@ -CC=gcc -CFLAGS=-O2 -Wall -Wextra -static -LDFLAGS= -PROG="duser" -SRC=duser.c user.c util.c log.c cfg.c -all: - $(CC) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(SRC) - strip -s $(PROG) -clean: - rm -rf $(PROG) - |