third_party.expat/expat/examples/Makefile.in
Fred L. Drake, Jr. 86b7ae104d Move the "elements" example code here from "sample", so we only have one
directory of short sample code.
2001-07-26 21:54:43 +00:00

55 lines
1.4 KiB
Makefile

################################################################
# 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
CPPFLAGS = @CPPFLAGS@
LDFLAGS = @LDFLAGS@ -static
LIBS = -L$(LIBDIR) -lexpat
CC = @CC@
CFLAGS = @CFLAGS@ -I$(INCDIR)
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
all: elements outline
elements: elements.o
$(CC) -o $@ $< $(LDFLAGS) $(LIBS)
outline: outline.o
$(CC) -o $@ $< $(LDFLAGS) $(LIBS)
check: $(SUBDIRS)
@echo
@echo This package does not yet have a regression test.
@echo
clean:
rm -f elements outline core *.o
distclean: clean
rm -f Makefile
maintainer-clean: distclean