Blame | Last modification | View Log | Download | RSS feed
# -------------------------------------------------------------------------# choose your compiler (must be ANSI-compliant!) and linker command, plus# any additionally needed flagsOBJDIR =CC = gccCFLAGS = -g -O3 -fomit-frame-pointer -Wall -Wextra -Werror -Wstrict-prototypes#CFLAGS = -g -O3 -fomit-frame-pointer -Wall -Wextra -Werror -Wstrict-prototypes -ansi -std=c89 -pedanticHOST_OBJEXTENSION = .oLD = $(CC)LDFLAGS =HOST_EXEXTENSION =TARG_OBJDIR = i686-w32/TARG_CC = i686-w64-mingw32-gccTARG_CFLAGS = $(CFLAGS)TARG_OBJEXTENSION = .oTARG_LD = $(TARG_CC)TARG_LDFLAGS =TARG_EXEXTENSION = .exeTARG_RUNCMD = wineTEX2DOC_FLAGS=-codepage 1252RC_CC = i686-w64-mingw32-windresinclude makedefs.rc# -------------------------------------------------------------------------# 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