Blame | Last modification | View Log | Download | RSS feed
# -------------------------------------------------------------------------# choose your compiler (must be ANSI-compliant!) and linker command, plus# any additionally needed flags# Uncomment these two lines to use G instead of D floating point format:# Expect a few tests to fail due to rounding errors.#GFLOAT=-mg#LIBM=-lmg# Explicitly asking for C99 and thereby long long (64 bit) supportOBJDIR =CC = gccCFLAGS = -O2 -fomit-frame-pointer -Wall -std=c99HOST_OBJEXTENSION = .oLD = gccLDFLAGS = -lcVHOST_EXEXTENSION =# no cross buildTARG_OBJDIR = $(OBJDIR)TARG_CC = $(CC) $(GFLOAT)TARG_CFLAGS = $(CFLAGS)TARG_OBJEXTENSION = $(HOST_OBJEXTENSION)TARG_LD = $(LD) $(GFLOAT)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