mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-17 02:34:36 +00:00
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:
parent
3f78776e80
commit
34fbc4a88f
2 changed files with 14 additions and 8 deletions
expat/bcb5
|
@ -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)
|
||||
|
|
|
@ -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\*
|
||||
|
|
Loading…
Add table
Reference in a new issue