1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
##*****************************************************************************
## $Id$
##*****************************************************************************
## Originally taken from Chris Dunlap's Munge project:
## $MungeID: Make-inc.mk,v 1.2 2003/04/30 18:44:14 dun Exp$
##*****************************************************************************
# Dependencies to ensure requisite libraries are rebuilt
#
$(top_builddir)/src/common/libcommon.la \
$(top_builddit)/src/modules/libmods.la \
: force-dependency-check
@cd `dirname $@` && make `basename $@`
force-dependency-check:
# Generic ``distclean'' hook.
#
# The double-colon allows this target to be defined multiple times,
# thereby allowing a Makefile.am to include its own distclean-local hook.
#
distclean-local::
-rm -f *~ \#* .\#* cscope*.out core *.core tags TAGS
#
# Code coverage flags
AM_CFLAGS = \
$(CODE_COVERAGE_CFLAGS)
AM_LDFLAGS = \
$(CODE_COVERAGE_LDFLAGS)
|