aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunk@stsci.edu>2009-09-16 23:07:58 -0400
committerJoseph Hunkeler <jhunk@stsci.edu>2009-09-16 23:07:58 -0400
commitfc227dfce34386764a0b717c56ac4a2253e64aa8 (patch)
tree81dad7f7c8661d5404867131ecb7b58b61b3fe0f /Makefile
parent2f03b5eb6491d9f210512fd790b7c319c231788d (diff)
downloadNetNuke-fc227dfce34386764a0b717c56ac4a2253e64aa8.tar.gz
Rewrite the entire core of NetNuke to store every media device in an array of structs.
So far the code is solid, but live-testing will be the deciding factor in if that is a true statement. Also, I remember getSize(const char* media) because it is no longer viable to use
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b360f6c..6676c01 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,7 @@
-CFLAGS=-Wall -pipe -O2
+CFLAGS=-std=c99 -Wall -pipe -O2
+LFLAGS=-lutil -ltermcap
OUTPUT=netnuke
all:
- cc -std=c99 -o ${OUTPUT} -lutil ${CFLAGS} netnuke.c
+ cc -o ${OUTPUT} ${LFLAGS} ${CFLAGS} netnuke.c