Simplify input.c - lose class table and use macros.

This commit is contained in:
Nicholas Marriott
2007-10-10 19:45:20 +00:00
parent 6aa64f1a93
commit efa3e131b5
3 changed files with 102 additions and 187 deletions

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.24 2007-10-04 21:21:48 nicm Exp $
# $Id: Makefile,v 1.25 2007-10-10 19:45:20 nicm Exp $
.SUFFIXES: .c .o .y .h
.PHONY: clean
@ -42,7 +42,7 @@ LDFLAGS+= -Wl,-E
CFLAGS+= -Wno-long-long -Wall -W -Wnested-externs -Wformat=2
CFLAGS+= -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations
CFLAGS+= -Wwrite-strings -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare
CFLAGS+= -Wundef -Wshadow -Wbad-function-cast -Winline -Wcast-align
CFLAGS+= -Wundef -Wbad-function-cast -Winline -Wcast-align
PREFIX?= /usr/local
INSTALLBIN= install -g bin -o root -m 555