summaryrefslogtreecommitdiff
path: root/xmlwf
diff options
context:
space:
mode:
authorgstein <gstein>2001-12-07 10:19:30 +0000
committergstein <gstein>2001-12-07 10:19:30 +0000
commitd7083a85d7383312e1a7074148ca5af637945d7a (patch)
treefd1112921a37f7d19be03d1e2851f333dade81c3 /xmlwf
parent95b6ee47d1aaadf9631dec10f18c930a55466163 (diff)
downloadlibexpat-d7083a85d7383312e1a7074148ca5af637945d7a.tar.gz
* Switch to a single, top-level Makefile (simplification, consistency)
* use libtool to compile/link all programs * remove */Makefile.in and remove them from configure * remove autom4te.cache after running autoconf * remove .o from the FILEMAP logic in configure and the Make system; provides more flexibility in the Makefile to use it * for VPATH builds: create the build subdirs by running "make mkdir-init" from the configure script * adjust .cvsignore files to account for presence of .libs now
Diffstat (limited to 'xmlwf')
-rwxr-xr-xxmlwf/.cvsignore1
-rw-r--r--xmlwf/Makefile.in36
2 files changed, 1 insertions, 36 deletions
diff --git a/xmlwf/.cvsignore b/xmlwf/.cvsignore
index 5e2763d..90464b4 100755
--- a/xmlwf/.cvsignore
+++ b/xmlwf/.cvsignore
@@ -3,3 +3,4 @@ Release
xmlwf.plg
Makefile
xmlwf
+.libs
diff --git a/xmlwf/Makefile.in b/xmlwf/Makefile.in
deleted file mode 100644
index f17ab78..0000000
--- a/xmlwf/Makefile.in
+++ /dev/null
@@ -1,36 +0,0 @@
-################################################################
-# Process this file with top-level configure script to produce Makefile
-#
-# Copyright 2000 Clark Cooper
-#
-# This file is part of EXPAT.
-#
-# EXPAT is free software; you can redistribute it and/or modify it
-# under the terms of the License (based on the MIT/X license) contained
-# in the file COPYING that comes with this distribution.
-#
-# EXPAT IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
-# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
-# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
-# SOFTWARE OR THE USE OR OTHER DEALINGS IN EXPAT.
-#
-
-srcdir=@srcdir@
-
-LIBDIR= ../lib/.libs
-INCDIR= $(srcdir)/../lib
-
-LDFLAGS= @LDFLAGS@ -static
-CFLAGS= @CFLAGS@ -I$(INCDIR)
-CC = @CC@
-
-OBJS= xmlwf.o xmlfile.o codepage.o @FILEMAP_OBJ@
-LIBS= -L$(LIBDIR) -lexpat
-
-VPATH = @srcdir@
-
-xmlwf: $(OBJS)
- $(CC) -o xmlwf $(LDFLAGS) $(OBJS) $(LIBS)