diff options
author | Joseph Hunkeler <jhunk@stsci.edu> | 2009-09-16 23:07:58 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunk@stsci.edu> | 2009-09-16 23:07:58 -0400 |
commit | fc227dfce34386764a0b717c56ac4a2253e64aa8 (patch) | |
tree | 81dad7f7c8661d5404867131ecb7b58b61b3fe0f /Makefile | |
parent | 2f03b5eb6491d9f210512fd790b7c319c231788d (diff) | |
download | NetNuke-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-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 |