]> granicus.if.org Git - libexpat/commitdiff
Sam TH:
authorFred L. Drake, Jr. <fdrake@users.sourceforge.net>
Thu, 1 Mar 2001 04:13:33 +0000 (04:13 +0000)
committerFred L. Drake, Jr. <fdrake@users.sourceforge.net>
Thu, 1 Mar 2001 04:13:33 +0000 (04:13 +0000)
Add a Makefile.in for the sample application.

FLD:
Tell CVS to ignore the generated Makefile.

This closes SF tracker patch #403583.

expat/sample/.gitignore [new file with mode: 0644]
expat/sample/Makefile.in [new file with mode: 0644]

diff --git a/expat/sample/.gitignore b/expat/sample/.gitignore
new file mode 100644 (file)
index 0000000..f3c7a7c
--- /dev/null
@@ -0,0 +1 @@
+Makefile
diff --git a/expat/sample/Makefile.in b/expat/sample/Makefile.in
new file mode 100644 (file)
index 0000000..afd9ceb
--- /dev/null
@@ -0,0 +1,38 @@
+################################################################
+# 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.
+#
+LIBDIR = ../lib/.libs
+INCDIR = ../lib
+
+LDFLAGS = @LDFLAGS@ -static 
+LIBS = -L$(LIBDIR) -lexpat
+CFLAGS = @CFLAGS@ -I$(INCDIR)
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+
+
+all: elements
+
+elements: elements.o
+       $(CC) -o elements elements.o $(LDFLAGS) $(LIBS)
+
+clean:
+       rm -f elements core *.o