X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8576d6a4546855a1358c84e45e1bc4f1bc39e496..00b2a5df9502adfd9a14ce01ab603f7906984995:/contrib/src/xml/makefile.vc diff --git a/contrib/src/xml/makefile.vc b/contrib/src/xml/makefile.vc index bc8b3e3eb5..302260ba99 100644 --- a/contrib/src/xml/makefile.vc +++ b/contrib/src/xml/makefile.vc @@ -19,8 +19,17 @@ THISDIR = $(WXDIR)\contrib\src\xml DOCDIR=$(WXDIR)\contrib\docs LOCALDOCDIR=$(WXDIR)\contrib\docs\latex\xml -# Set this to where your libxml is -EXTRAFLAGS=-Id:\libxml\libxml2-2.1.1 +NOPCH=1 + +EXPAT_DIR=$(THISDIR)\expat +E1=$(EXPAT_DIR)\xmlparse +E2=$(EXPAT_DIR)\xmltok + +EXPAT_INCS=-I$(THISDIR)\expat\xmlparse -I$(THISDIR)\expat\xmltok +EXPAT_OBJS=$(D)\xmlparse.obj $(D)\xmlrole.obj $(D)\xmltok.obj + +# Set this to where your libxml directory is +EXTRAFLAGS=$(EXPAT_INCS) # Unfortunately we need this _before_ we include makelib.vc !if "$(FINAL)" == "1" @@ -33,14 +42,32 @@ LIBEXT=d LIBTARGET=$(WXDIR)\lib\wxxml$(LIBEXT).lib EXTRATARGETS=$(D) -OBJECTS=$(D)\xml.obj $(D)\xmlbin.obj $(D)\xmlbinz.obj $(D)\xmlpars.obj $(D)\xmlres.obj $(D)\xmlrsall.obj \ - $(D)\xh_bttn.obj $(D)\xh_chckb.obj $(D)\xh_chckl.obj $(D)\xh_choic.obj $(D)\xh_combo.obj $(D)\xh_dlg.obj \ - $(D)\xh_gauge.obj $(D)\xh_html.obj $(D)\xh_menu.obj $(D)\xh_notbk.obj $(D)\xh_panel.obj $(D)\xh_radbt.obj \ - $(D)\xh_radbx.obj $(D)\xh_sizer.obj $(D)\xh_slidr.obj $(D)\xh_spin.obj $(D)\xh_stbmp.obj $(D)\xh_sttxt.obj \ - $(D)\xh_text.obj $(D)\xh_listb.obj $(D)\xh_toolb.obj +OBJECTS=$(EXPAT_OBJS) \ + $(D)\xml.obj $(D)\xmlbin.obj $(D)\xmlbinz.obj $(D)\xmlres.obj \ + $(D)\xmlrsall.obj $(D)\xh_bttn.obj $(D)\xh_chckb.obj $(D)\xh_chckl.obj \ + $(D)\xh_choic.obj $(D)\xh_combo.obj $(D)\xh_dlg.obj \ + $(D)\xh_frame.obj $(D)\xh_gauge.obj $(D)\xh_html.obj $(D)\xh_menu.obj \ + $(D)\xh_notbk.obj $(D)\xh_panel.obj $(D)\xh_radbt.obj \ + $(D)\xh_radbx.obj $(D)\xh_sizer.obj $(D)\xh_slidr.obj $(D)\xh_spin.obj \ + $(D)\xh_stbmp.obj $(D)\xh_sttxt.obj \ + $(D)\xh_text.obj $(D)\xh_listb.obj $(D)\xh_toolb.obj \ + $(D)\xh_bmpbt.obj $(D)\xh_cald.obj $(D)\xh_listc.obj $(D)\xh_scrol.obj \ + $(D)\xh_stbox.obj $(D)\xh_tree.obj $(D)\xh_stlin.obj $(D)\xh_bmp.obj \ + $(D)\xh_unkwn.obj $(D)\xmlwrite.obj $(D)\xmlexpat.obj !include $(WXDIR)\src\makelib.vc +{$(E1)}.c{$(D)}.obj: + $(cc) @<< +$(CPPFLAGS) /c /Fo$@ /Tc $< +<< +{$(E2)}.c{$(D)}.obj: + $(cc) @<< +$(CPPFLAGS) /c /Fo$@ /Tc $< +<< + + + DOCSOURCES=$(LOCALDOCDIR)\xml.tex \ $(LOCALDOCDIR)\bugs.tex $(LOCALDOCDIR)\changes.tex\ $(LOCALDOCDIR)\classes.tex $(LOCALDOCDIR)\intro.tex\ @@ -98,8 +125,8 @@ $(DOCDIR)\htmlhelp\xml.chm: $(DOCDIR)\html\xml\xml.htm $(DOCDIR)\html\xml\xml.hh # Optionally, a cached version of the .hhp file can be generated with hhp2cached. $(DOCDIR)\htb\xml.htb: $(DOCDIR)\html\xml\xml.htm cd $(DOCDIR)\html\xml - -erase /Y xml.zip xml.htb - zip32 xml.zip *.htm *.gif *.hhp *.hhc *.hhk + -erase xml.zip xml.htb + zip xml.zip *.htm *.gif *.hhp *.hhc *.hhk -mkdir $(DOCDIR)\htb move xml.zip $(DOCDIR)\htb\xml.htb cd $(THISDIR)