--- Makefile.def.orig 2007-05-19 19:18:26.000000000 -0700 +++ Makefile.def 2007-05-19 19:22:59.000000000 -0700 @@ -0,0 +1,29 @@ +# ------------------------------------------------------------------------- +# choose your compiler (must be ANSI-compliant!) and linker command, plus +# any additionally needed flags + +CC = gcc +LD = gcc +CFLAGS = -g -O2 -Wall +LDFLAGS = -g + +TARG_OBJEXTENSION = .o + +HOST_OBJEXTENSION = $(TARG_OBJEXTENSION) + +# ------------------------------------------------------------------------- +# directories where binaries, includes, and manpages should go during +# installation + +BINDIR = /usr/bin +INCDIR = /usr/share/asl/include +MANDIR = /usr/share/man +LIBDIR = /usr/share/asl/lib +DOCDIR = doc + +# ------------------------------------------------------------------------- +# character encoding to use (choose one of them) + +CHARSET = CHARSET_ISO8859_1 +# CHARSET = CHARSET_ASCII7 +# CHARSET = CHARSET_IBM437