mirror of
https://github.com/michaelrsweet/mxml.git
synced 2024-11-08 13:39:58 +00:00
337baeddb5
Prep for new "standard" opaque, integer, etc. callbacks. Add new vsnprintf check. Drop old string function checks for functions we don't actually use.
243 lines
4.5 KiB
Makefile
243 lines
4.5 KiB
Makefile
#
|
|
# "$Id: Makefile.in,v 1.12 2003/09/28 12:44:39 mike Exp $"
|
|
#
|
|
# Makefile for mini-XML, a small XML-like file parsing library.
|
|
#
|
|
# Copyright 2003 by Michael Sweet.
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Library General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
|
|
#
|
|
# Compiler tools definitions...
|
|
#
|
|
|
|
AR = @AR@
|
|
ARFLAGS = @ARFLAGS@
|
|
CC = @CC@
|
|
CFLAGS = $(OPTIM) @CFLAGS@ @CPPFLAGS@
|
|
CP = @CP@
|
|
LDFLAGS = $(OPTIM) @LDFLAGS@
|
|
MKDIR = @MKDIR@
|
|
NROFF = @NROFF@
|
|
OPTIM = @OPTIM@
|
|
RANLIB = @RANLIB@
|
|
RM = @RM@ -f
|
|
SHELL = /bin/sh
|
|
|
|
|
|
#
|
|
# Configured directories...
|
|
#
|
|
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
bindir = @bindir@
|
|
includedir = @includedir@
|
|
libdir = @libdir@
|
|
mandir = @mandir@
|
|
docdir = @docdir@
|
|
BUILDROOT = $(DSTROOT)
|
|
|
|
|
|
#
|
|
# Manpage extensions...
|
|
#
|
|
|
|
CAT1EXT = @CAT1EXT@
|
|
CAT3EXT = @CAT3EXT@
|
|
MAN1EXT = @MAN1EXT@
|
|
MAN3EXT = @MAN3EXT@
|
|
|
|
|
|
#
|
|
# Rules...
|
|
#
|
|
|
|
.SUFFIXES: .0 .1 .3 .c .man .o
|
|
.c.o:
|
|
$(CC) $(CFLAGS) -c $<
|
|
.man.0 .man.1 .man.3:
|
|
$(RM) $@
|
|
$(NROFF) -man $< >$@
|
|
|
|
|
|
#
|
|
# Targets...
|
|
#
|
|
|
|
DOCFILES = documentation.html README COPYING CHANGES
|
|
LIBOBJS = mxml-attr.o mxml-file.o mxml-node.o mxml-search.o \
|
|
mxml-string.o
|
|
OBJS = mxmldoc.o testmxml.o $(LIBOBJS)
|
|
TARGETS = libmxml.a mxmldoc mxml.$(CAT3EXT) mxmldoc.$(CAT1EXT) \
|
|
testmxml mxml.xml
|
|
|
|
|
|
#
|
|
# Make everything...
|
|
#
|
|
|
|
all: Makefile configure config.h $(TARGETS)
|
|
|
|
|
|
#
|
|
# Clean everything...
|
|
#
|
|
|
|
clean:
|
|
$(RM) $(OBJS) $(TARGETS)
|
|
$(RM) *.bck *.bak
|
|
$(RM) config.cache config.log config.status
|
|
$(RM) -r autom4te*.cache
|
|
|
|
|
|
#
|
|
# Install everything...
|
|
#
|
|
|
|
install: $(TARGETS)
|
|
-$(MKDIR) -p $(BUILDROOT)/$(bindir)
|
|
$(CP) mxmldoc $(BUILDROOT)/$(bindir)
|
|
-$(MKDIR) -p $(BUILDROOT)/$(docdir)
|
|
$(CP) $(DOCFILES) $(BUILDROOT)/$(docdir)
|
|
-$(MKDIR) -p $(BUILDROOT)/$(includedir)
|
|
$(CP) mxml.h $(BUILDROOT)/$(includedir)
|
|
-$(MKDIR) -p $(BUILDROOT)/$(libdir)
|
|
$(CP) libmxml.a $(BUILDROOT)/$(libdir)
|
|
-$(MKDIR) -p $(BUILDROOT)/$(mandir)/cat1
|
|
$(CP) mxmldoc.$(CAT1EXT) $(BUILDROOT)/$(mandir)/cat1/mxmldoc.$(CAT1EXT)
|
|
-$(MKDIR) -p $(BUILDROOT)/$(mandir)/cat3
|
|
$(CP) mxml.$(CAT3EXT) $(BUILDROOT)/$(mandir)/cat3/mxml.$(CAT3EXT)
|
|
-$(MKDIR) -p $(BUILDROOT)/$(mandir)/man1
|
|
$(CP) mxmldoc.man $(BUILDROOT)/$(mandir)/man1/mxmldoc.$(MAN1EXT)
|
|
-$(MKDIR) -p $(BUILDROOT)/$(mandir)/man3
|
|
$(CP) mxml.man $(BUILDROOT)/$(mandir)/man3/mxml.$(MAN3EXT)
|
|
|
|
|
|
#
|
|
# Uninstall everything...
|
|
#
|
|
|
|
uninstall:
|
|
$(RM) $(BUILDROOT)/$(bindir)/mxmldoc
|
|
$(RM) -r $(BUILDROOT)/$(docdir)
|
|
$(RM) $(BUILDROOT)/$(includedir)/mxml.h
|
|
$(RM) $(BUILDROOT)/$(libdir)/libmxml.a
|
|
$(RM) $(BUILDROOT)/$(mandir)/cat1/mxmldoc.$(CAT1EXT)
|
|
$(RM) $(BUILDROOT)/$(mandir)/cat3/mxml.$(CAT3EXT)
|
|
$(RM) $(BUILDROOT)/$(mandir)/man1/mxmldoc.$(MAN1EXT)
|
|
$(RM) $(BUILDROOT)/$(mandir)/man3/mxml.$(MAN3EXT)
|
|
|
|
|
|
#
|
|
# autoconf stuff...
|
|
#
|
|
|
|
Makefile: configure Makefile.in
|
|
if test -f config.status; then \
|
|
./config.status --recheck; \
|
|
./config.status; \
|
|
else \
|
|
./configure; \
|
|
fi
|
|
touch config.h
|
|
|
|
|
|
configure: configure.in
|
|
autoconf
|
|
if test -f config.status; then \
|
|
./config.status --recheck; \
|
|
./config.status; \
|
|
else \
|
|
./configure; \
|
|
fi
|
|
touch config.h
|
|
|
|
|
|
config.h: configure config.h.in
|
|
autoconf
|
|
if test -f config.status; then \
|
|
./config.status --recheck; \
|
|
./config.status; \
|
|
else \
|
|
./configure; \
|
|
fi
|
|
touch config.h
|
|
|
|
|
|
#
|
|
# libmxml.a
|
|
#
|
|
|
|
libmxml.a: $(LIBOBJS)
|
|
$(RM) $@
|
|
$(AR) $(ARFLAGS) $@ $(LIBOBJS)
|
|
$(RANLIB) $@
|
|
|
|
$(LIBOBJS): mxml.h
|
|
|
|
|
|
#
|
|
# mxmldoc
|
|
#
|
|
|
|
mxmldoc: libmxml.a mxmldoc.o
|
|
$(CC) $(LDFLAGS) -o $@ mxmldoc.o libmxml.a
|
|
|
|
mxmldoc.o: mxml.h
|
|
|
|
|
|
#
|
|
# testmxml
|
|
#
|
|
|
|
testmxml: libmxml.a testmxml.o
|
|
$(CC) $(LDFLAGS) -o $@ testmxml.o libmxml.a
|
|
@echo Testing library...
|
|
./testmxml test.xml >temp1.xml 2>temp1s.xml
|
|
./testmxml temp1.xml >temp2.xml 2>temp2s.xml
|
|
@if cmp temp1.xml temp2.xml; then \
|
|
echo File test passed!; \
|
|
$(RM) temp2.xml temp2s.xml; \
|
|
else \
|
|
echo File test failed!; \
|
|
fi
|
|
@if cmp temp1.xml temp1s.xml; then \
|
|
echo String test passed!; \
|
|
$(RM) temp1.xml temp1s.xml; \
|
|
else \
|
|
echo String test failed!; \
|
|
fi
|
|
|
|
testmxml.o: mxml.h
|
|
|
|
|
|
#
|
|
# mxml.xml
|
|
#
|
|
|
|
mxml.xml: mxmldoc mxml.h $(LIBOBJS:.o=.c)
|
|
$(RM) mxml.xml
|
|
./mxmldoc mxml.xml mxml.h $(LIBOBJS:.o=.c) >documentation.html
|
|
|
|
|
|
#
|
|
# All object files depend on the makefile...
|
|
#
|
|
|
|
$(OBJS): Makefile config.h
|
|
|
|
|
|
#
|
|
# End of "$Id: Makefile.in,v 1.12 2003/09/28 12:44:39 mike Exp $".
|
|
#
|