diff options
author | Joseph Hunkeler <jhunk@stsci.edu> | 2009-09-17 08:36:26 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunk@stsci.edu> | 2009-09-17 08:36:26 -0400 |
commit | 8a7e1f1f3007136f06049a0b89d71dda70ab0a6f (patch) | |
tree | a12fa7a85b7a42c24354cc83bb75341582c05690 /Makefile | |
parent | f759cd3befb46a7d1a386a1d92c0350c3433400b (diff) | |
download | NetNuke-8a7e1f1f3007136f06049a0b89d71dda70ab0a6f.tar.gz |
Small changes.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,7 +1,11 @@ CFLAGS=-std=c99 -Wall -pipe -O2 +DEFINES= LFLAGS=-lutil -ltermcap -OUTPUT=netnuke +PACKAGE=netnuke all: - cc -o ${OUTPUT} ${LFLAGS} ${CFLAGS} netnuke.c + gcc $(SVNDEF) -o $(PACKAGE) $(DEFINES) $(CFLAGS) $(LFLAGS) netnuke.c + strip netnuke +clean: + rm netnuke |