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 32 33 34 35 36 37 38 39 40
|
# $Progeny$
SUBDIR= linux stub
all:
@${MAKE} __recur TARGET=$@
###############################################################################
# Clean
distclean_FILES= Makefile
clean:
@${MAKE} __recur TARGET=$@
distclean:
@${MAKE} __recur TARGET=$@
rm -rf ${distclean_FILES}
maintainer-clean:
@${MAKE} __recur TARGET=$@
rm -rf ${distclean_FILES}
###############################################################################
# Installation
install:
@${MAKE} __recur TARGET=$@
uninstall:
@${MAKE} __recur TARGET=$@
###############################################################################
# Distribution
DISTFILES= Makefile.in
distdir:
${top_srcdir}/buildtools/distdir ${distdir}/${_THISDIR_} ${DISTFILES}
@${MAKE} __recur TARGET=$@
|