Fixes to make it work with make & the free BCC32 command line compiler:

- enabled long command arguments with the "-l" option in makefile.mak
- removed an erroneous linker option from elements.mak
This commit is contained in:
Karl Waclawek 2002-07-27 17:50:45 +00:00
parent 3f78776e80
commit 34fbc4a88f
2 changed files with 14 additions and 8 deletions

View file

@ -46,7 +46,7 @@ IDLCFLAGS = -I$(BCB)\include
PFLAGS = -N2debug\obj -N0debug\obj -$YD -$W -$O-
RFLAGS = /l 0x409 /d "NDEBUG" /i$(BCB)\include;$(BCB)\include\mfc
AFLAGS = /mx /w2 /zi
LFLAGS = -Idebug\obj -D"" -ap -Tpe -x -Gn -v -q -L..\LIB\RELEASE
LFLAGS = -Idebug\obj -D"" -ap -Tpe -x -Gn -v -q
# ---------------------------------------------------------------------------
ALLOBJ = c0x32.obj $(OBJFILES)
ALLRES = $(RESFILES)

View file

@ -4,22 +4,28 @@ setup:
setup
expat:
make -f libexpat.mak
make -l -flibexpat.mak
expatw:
make -f libexpatw.mak
make -l -flibexpatw.mak
elements:
make -f elements.mak
make -l -felements.mak
outline:
make -f outline.mak
make -l -foutline.mak
xmlwf:
make -f xmlwf.mak
make -l -fxmlwf.mak
clean:
deltree /y debug\obj
# works on Win98/ME
# deltree /y debug\obj
# works on WinNT/2000
del /s/f/q debug\obj
distclean:
deltree /y debug\*.*
# works on Win98/ME
# deltree /y debug\*.*
# works on WinNT/2000
del /s/f/q debug\*