b64481fed4
* Check for non-ASCII characters in getch() because the rest of the code doesn't expect such. * Removed use of -traditional and constructs which relied on this. * Use raise(SIGFPE) in dump() instead of attempting a division-by-zero. * Fixed compiler warnings regarding missing prototypes or unused parameters.
11 lines
262 B
Makefile
11 lines
262 B
Makefile
# $NetBSD: Makefile,v 1.10 2007/01/18 12:43:38 cbiere Exp $
|
|
# @(#)Makefile 5.16 (Berkeley) 4/26/91
|
|
|
|
PROG= xebec
|
|
SRCS= llparse.c llscan.c main.c malloc.c procs.c putdriver.c sets.c xebec.c
|
|
CPPFLAGS+= -Wall -DDEBUG
|
|
NOMAN= # defined
|
|
WARNS=0
|
|
|
|
.include <bsd.prog.mk>
|