SOFTWARE = HaXml LIBSRCS = \ Text/XML/HaXml.hs Text/XML/HaXml/Combinators.hs Text/XML/HaXml/Lex.hs \ Text/XML/HaXml/Parse.hs Text/XML/HaXml/Pretty.hs \ Text/XML/HaXml/Types.hs Text/XML/HaXml/Validate.hs \ Text/XML/HaXml/Wrappers.hs Text/XML/HaXml/OneOfN.hs \ Text/XML/HaXml/Xml2Haskell.hs Text/XML/HaXml/Haskell2Xml.hs \ Text/XML/HaXml/Verbatim.hs Text/XML/HaXml/Escape.hs \ Text/XML/HaXml/Html/Generate.hs Text/XML/HaXml/Html/Parse.hs \ Text/XML/HaXml/Html/Pretty.hs \ Text/XML/HaXml/Xtract/Combinators.hs \ Text/XML/HaXml/Xtract/Lex.hs \ Text/XML/HaXml/Xtract/Parse.hs \ Text/ParserCombinators/HuttonMeijerWallace.hs LIBOBJS = $(patsubst %.hs, %.o, $(LIBSRCS)) TOOLSRCS = \ Text/XML/HaXml/DtdToHaskell/TypeDef.hs \ Text/XML/HaXml/DtdToHaskell/Convert.hs \ Text/XML/HaXml/DtdToHaskell/Instance.hs \ tools/DtdToHaskell.hs tools/Xtract.hs tools/Validate.hs \ tools/Canonicalise.hs tools/MkOneOf.hs TOOLSET = \ ../../DtdToHaskell$(EXE) ../../Xtract$(EXE) ../../Validate$(EXE) \ ../../Canonicalise$(EXE) ../../MkOneOf$(EXE) EXE = $(shell cat ../exe) INSTALLDIR = $(shell cat ../prefix) # The caller *must* set the HC variable. COMPILER := $(findstring ghc, $(HC)) ifeq "$(COMPILER)" "ghc" COMPILE = $(HC) --make -cpp -i. $(shell cat ghcpkgs) -package-name HaXml RENAME = mv a.out endif COMPILER := $(findstring nhc98, $(HC)) ifeq "$(COMPILER)" "nhc98" COMPILE = hmake -hc=$(HC) -I. -K4M +CTS -H8M -CTS -package base RENAME = echo Built endif .PHONY: all libs toolset all: libs toolset libs: libHSHaXml.a toolset: $(TOOLSET) install-filesonly-ghc: libs $(INSTALLDIR) cp libHSHaXml.a `cat ghclibdir` -ranlib `cat ghclibdir`/libHSHaXml.a # ignore if fails on Linux -cp HSHaXml.o `cat ghclibdir` # file may not exist on MacOS X -rm -r `cat ghcincdir`/HaXml mkdir `cat ghcincdir`/HaXml cp interfaces.tar `cat ghcincdir`/HaXml cd `cat ghcincdir`/HaXml; tar xf interfaces.tar; rm interfaces.tar cp $(TOOLSET) $(INSTALLDIR) install-filesonly-nhc98: libs $(INSTALLDIR) cp libHSHaXml.a `cat nhc98libdir`/`harch` -ranlib `cat nhc98libdir`/`harch`/libHSHaXml.a -rm -r `cat nhc98incdir`/HaXml mkdir `cat nhc98incdir`/HaXml cp interfaces.tar `cat nhc98incdir`/packages/HaXml cd `cat nhc98incdir`/packages/HaXml; tar xf interfaces.tar; rm interfaces.tar cp $(TOOLSET) $(INSTALLDIR) install-ghc: install-filesonly-ghc `cat ghcpkgcmd` --remove-package=HaXml || true `cat ghcpkgcmd` --add-package $$tool ;\ cat $$file >>$$tool ;\ chmod +x $$tool ;\ done $(INSTALLDIR): if [ ! -d $(INSTALLDIR) ] ; then mkdir -p $(INSTALLDIR); fi