Rev 964 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
# -------------------------------------------------------------------------# choose your compiler (must be ANSI-compliant!) and linker command, plus# any additionally needed flags# NOTE: The egcs version shipped with Cygwin B20 seems to have trouble with# optimization level 3, don't use it :-/# ...for host-side build tools:CC = gccOBJDIR =CFLAGS = -O2 -WallHOST_OBJEXTENSION = .oLD = $(CC)LDFLAGS =HOST_EXEXTENSION =TARG_CC = $(CC)TARG_OBJDIR = $(OBJDIR)TARG_CFLAGS = $(CFLAGS)TARG_OBJEXTENSION = .oTARG_LD = $(LD)TARG_LDFLAGS = $(LDFLAGS)TARG_EXEXTENSION = $(HOST_EXEXTENSION)# -------------------------------------------------------------------------# directories where binaries, includes, and manpages should go during# installationBINDIR = /usr/local/binINCDIR = /usr/local/include/aslMANDIR = /usr/local/manLIBDIR =DOCDIR = /usr/local/doc/asl