Blame Makefile.in

Packit cdaae3
#
Packit cdaae3
#
Packit cdaae3
#  Copyright (C) 2000,2003,2004,2006 Silicon Graphics, Inc.  All Rights Reserved.
Packit cdaae3
#  Portions Copyright (C) 2010-2013 David B Anderson.  All Rights Reserved.
Packit cdaae3
#
Packit cdaae3
#  This program is free software; you can redistribute it and/or modify it
Packit cdaae3
#  under the terms of version 2.1 of the GNU Lesser General Public License 
Packit cdaae3
#  as published by the Free Software Foundation.
Packit cdaae3
#
Packit cdaae3
#  This program is distributed in the hope that it would be useful, but
Packit cdaae3
#  WITHOUT ANY WARRANTY; without even the implied warranty of
Packit cdaae3
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
Packit cdaae3
#
Packit cdaae3
#  Further, this software is distributed without any warranty that it is
Packit cdaae3
#  free of the rightful claim of any third person regarding infringement 
Packit cdaae3
#  or the like.  Any license provided herein, whether implied or 
Packit cdaae3
#  otherwise, applies only to this software file.  Patent licenses, if
Packit cdaae3
#  any, provided herein do not apply to combinations of this program with 
Packit cdaae3
#  other software, or any other product whatsoever.  
Packit cdaae3
#
Packit cdaae3
#  You should have received a copy of the GNU Lesser General Public 
Packit cdaae3
#  License along with this program; if not, write the Free Software 
Packit cdaae3
#  Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston MA 02110-1301,
Packit cdaae3
#  USA.
Packit cdaae3
Packit cdaae3
#
Packit cdaae3
#  Contact information:  Silicon Graphics, Inc., 1500 Crittenden Lane,
Packit cdaae3
#  Mountain View, CA 94043, or:
Packit cdaae3
#
Packit cdaae3
#  http://www.sgi.com
Packit cdaae3
#
Packit cdaae3
#  For further information regarding this notice, see:
Packit cdaae3
#
Packit cdaae3
#  http://oss.sgi.com/projects/GenInfo/NoticeExplan
Packit cdaae3
#
Packit cdaae3
#
Packit cdaae3
Packit cdaae3
#
Packit cdaae3
#  Makefile for libdwarf
Packit cdaae3
#  This is made very simple so it should work with
Packit cdaae3
#  any 'make'.
Packit cdaae3
#
Packit cdaae3
Packit cdaae3
srcdir =	@srcdir@
Packit cdaae3
VPATH =		@srcdir@
Packit cdaae3
Packit cdaae3
prefix =	@prefix@
Packit cdaae3
exec_prefix =	@exec_prefix@
Packit cdaae3
bindir =	$(exec_prefix)/bin
Packit cdaae3
libdir =	$(exec_prefix)/lib
Packit cdaae3
Packit cdaae3
INSTALL =	@INSTALL@
Packit cdaae3
INSTALL_PROGRAM = @INSTALL_PROGRAM@
Packit cdaae3
INSTALL_DATA =	@INSTALL_DATA@
Packit cdaae3
SHELL =		/bin/sh
Packit cdaae3
CC =		@CC@
Packit cdaae3
AR =		@AR@
Packit cdaae3
# For use with BSD ar (MacOSX ar) edit the ARFLAGS to be -s
Packit cdaae3
#ARFLAGS =	@ARFLAGS@
Packit cdaae3
RM =		rm
Packit cdaae3
RANLIB =	@RANLIB@
Packit cdaae3
DEFS =		@DEFS@
Packit cdaae3
LIBS =		@LIBS@
Packit cdaae3
INCLUDES =	-I. -I$(srcdir)
Packit cdaae3
dwfpic =        @dwfpic@
Packit cdaae3
CFLAGS =	$(PREINCS) @CPPFLAGS@ @CFLAGS@ $(INCLUDES) $(dwfpic) $(POSTINCS)
Packit cdaae3
LDFLAGS =	$(PRELIBS) @LDFLAGS@ $(POSTLIBS)
Packit cdaae3
Packit cdaae3
basic:
Packit cdaae3
	cd libdwarf && make
Packit cdaae3
	cd dwarfdump && make
Packit cdaae3
Packit cdaae3
# The dd target takes the least space and time
Packit cdaae3
# to build.
Packit cdaae3
dd:
Packit cdaae3
	cd libdwarf && make
Packit cdaae3
	cd dwarfdump && make
Packit cdaae3
all:    basic
Packit cdaae3
	cd dwarfgen && make
Packit cdaae3
	cd dwarfexample && make
Packit cdaae3
Packit cdaae3
clean:
Packit cdaae3
	sh ./CLEANUP
Packit cdaae3
Packit cdaae3
install: all
Packit cdaae3
	echo "No install provided, see comments in the README"
Packit cdaae3
Packit cdaae3
distclean:  clean
Packit cdaae3
	rm -f dwarfgen/config.status 
Packit cdaae3
	rm -f dwarfgen/config.log 
Packit cdaae3
	rm -f dwarfgen/config.cache 
Packit cdaae3
	rm -f dwarfgen/config.h
Packit cdaae3
	rm -f dwarfgen/configure.lineno
Packit cdaae3
	rm -rf dwarfgen/autom4te.cache 
Packit cdaae3
	rm -f dwarfgen/Makefile
Packit cdaae3
	rm -f dwarfdump/config.status 
Packit cdaae3
	rm -f dwarfdump/config.log 
Packit cdaae3
	rm -f dwarfdump/config.cache 
Packit cdaae3
	rm -f dwarfdump/config.h
Packit cdaae3
	rm -rf dwarfdump/autom4te.cache 
Packit cdaae3
	rm -f dwarfdump/Makefile
Packit cdaae3
	rm -f libdwarf/config.status 
Packit cdaae3
	rm -f libdwarf/config.log 
Packit cdaae3
	rm -f libdwarf/config.cache 
Packit cdaae3
	rm -f libdwarf/config.h
Packit cdaae3
	rm -rf libdwarf/autom4te.cache 
Packit cdaae3
	rm -f libdwarf/Makefile
Packit cdaae3
	rm -f config.status 
Packit cdaae3
	rm -f config.log 
Packit cdaae3
	rm -f config.cache 
Packit cdaae3
	rm -f config.h
Packit cdaae3
	rm -rf autom4te.cache 
Packit cdaae3
	rm -f Makefile
Packit cdaae3
Packit cdaae3
shar:
Packit cdaae3
		@echo "shar not set up"
Packit cdaae3
dist:
Packit cdaae3
		@echo "dist not set up"