Blame | Last modification | View Log | Download | RSS feed
# -------------------------------------------------------------------------# choose your compiler (must be ANSI-compliant!) and linker command, plus# any additionally needed flagsOBJDIR =CC = gcc# You might want to adapt the -m-option to your cpu type# Strange: on a 5000/200, things get slower with higher optimization# levels...that doesn't happen on a 3100...CFLAGS = -O1 -mcpu=r3000 -fomit-frame-pointer -WallHOST_OBJEXTENSION = .oLD = gccLDFLAGS =HOST_EXEXTENSION =# no cross buildTARG_OBJDIR = $(OBJDIR)TARG_CC = $(CC)TARG_CFLAGS = $(CFLAGS)TARG_OBJEXTENSION = $(HOST_OBJEXTENSION)TARG_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