Make file template
This is the template used by Gene 0.5 to generate it's make file.
You can also use this for 0.4 code. All you need to do is fill in
the name of the application after 'APP=' and specify all the library
files that need to be included (for all the static libs that you are
using in your project).
APP =
EXEFILE = $(APP).exe
OBJFILES = $(APP).obj
RESFILES = $(APP).res
LIBFILES =
DEFFILE =
.AUTODEPEND
BCC32 = bcc32
ILINK32 = ilink32
BRC32 = brc32
CFLAGS = -c -tWM- -w -w-par -w-inl -W -a1 -Od
LFLAGS = -aa -V4.0 -c -x -Gn
RFLAGS = -X -R
STDOBJS = c0w32.obj
STDLIBS = import32.lib cw32.lib
$(EXEFILE) : $(OBJFILES) $(RESFILES)
$(ILINK32) $(LFLAGS) $(OBJFILES) $(STDOBJS), $(EXEFILE), ,
\
$(LIBFILES) $(STDLIBS), $(DEFFILE),
$(RESFILES)
clean:
del *.obj *.res *.tds *.map