diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2004-12-15 21:01:22 +0000 |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2004-12-15 21:01:22 +0000 |
commit | 0c1d812325ca20a7239571415e0f3ede8b7ee1fe (patch) | |
tree | 7831be9eb15322ac6f28c6fcbaa44ebdeff0abff /m4 | |
parent | ffb54640215b83f7f36b0052739a272ca6b4d128 (diff) | |
download | monitoring-plugins-0c1d812325ca20a7239571415e0f3ede8b7ee1fe.tar.gz |
Makefile for m4 files
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1030 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'm4')
-rw-r--r-- | m4/Makefile.am | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/m4/Makefile.am b/m4/Makefile.am new file mode 100644 index 00000000..4fe72f1f --- /dev/null +++ b/m4/Makefile.am @@ -0,0 +1,46 @@ +## Process this file with automake to produce Makefile.in. +EXTRA_DIST = +EXTRA_DIST += Makefile.am.in +EXTRA_DIST += afs.m4 +EXTRA_DIST += codeset.m4 +EXTRA_DIST += error.m4 +EXTRA_DIST += exitfail.m4 +EXTRA_DIST += extensions.m4 +EXTRA_DIST += fstypename.m4 +EXTRA_DIST += fsusage.m4 +EXTRA_DIST += getopt.m4 +EXTRA_DIST += gettext.m4 +EXTRA_DIST += glibc21.m4 +EXTRA_DIST += iconv.m4 +EXTRA_DIST += intdiv0.m4 +EXTRA_DIST += inttypes-pri.m4 +EXTRA_DIST += inttypes.m4 +EXTRA_DIST += inttypes_h.m4 +EXTRA_DIST += isc-posix.m4 +EXTRA_DIST += lcmessage.m4 +EXTRA_DIST += lib-ld.m4 +EXTRA_DIST += lib-link.m4 +EXTRA_DIST += lib-prefix.m4 +EXTRA_DIST += ls-mntd-fs.m4 +EXTRA_DIST += malloc.m4 +EXTRA_DIST += mountlist.m4 +EXTRA_DIST += np_coreutils.m4 +EXTRA_DIST += onceonly.m4 +EXTRA_DIST += progtest.m4 +EXTRA_DIST += realloc.m4 +EXTRA_DIST += stdint_h.m4 +EXTRA_DIST += uintmax_t.m4 +EXTRA_DIST += ulonglong.m4 +EXTRA_DIST += unlocked-io.m4 +EXTRA_DIST += xalloc.m4 + +Makefile.am: Makefile.am.in + rm -f $@ $@t + (echo "## Process this file with automake to produce Makefile.in."; \ + echo EXTRA_DIST =; \ + echo "EXTRA_DIST += Makefile.am.in"; \ + ls -1 *.m4 | sed 's/^/EXTRA_DIST += /'; echo ) \ + >> $@t + sed -n '/^Makefile\.am:/,$$p' $@.in >> $@t + chmod a-w $@t + mv $@t $@ |