summaryrefslogtreecommitdiff
path: root/bcb5
diff options
context:
space:
mode:
authorkwaclaw <kwaclaw>2002-07-27 17:50:45 +0000
committerkwaclaw <kwaclaw>2002-07-27 17:50:45 +0000
commit9bbff03d1741aa896ff28e284f422aa5f1a900c5 (patch)
tree8e0173af55b457fd774c765157acc112415f340e /bcb5
parent3bb1e5ec79a0d370622c80262c579d5c2f29658a (diff)
downloadlibexpat-9bbff03d1741aa896ff28e284f422aa5f1a900c5.tar.gz
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
Diffstat (limited to 'bcb5')
-rw-r--r--bcb5/elements.mak2
-rw-r--r--bcb5/makefile.mak20
2 files changed, 14 insertions, 8 deletions
diff --git a/bcb5/elements.mak b/bcb5/elements.mak
index 480f074..f9b42b3 100644
--- a/bcb5/elements.mak
+++ b/bcb5/elements.mak
@@ -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)
diff --git a/bcb5/makefile.mak b/bcb5/makefile.mak
index 0fb4e7c..4ebac71 100644
--- a/bcb5/makefile.mak
+++ b/bcb5/makefile.mak
@@ -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\*