From fc227dfce34386764a0b717c56ac4a2253e64aa8 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Thu, 17 Sep 2009 03:07:58 +0000 Subject: 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 --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Makefile') 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 -- cgit