diff options
author | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-30 21:44:48 +0000 |
---|---|---|
committer | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-30 21:44:48 +0000 |
commit | ef733b48e9f80b42b3bd4aaef3654c3485fac8d5 (patch) | |
tree | 027281550eb5e757d8b829ef7f7a02745fe787f3 /Makefile.am | |
parent | 2afb46ab3424d433cb376cffb4b2fe61f3cf8d80 (diff) | |
download | riscv-openocd-ef733b48e9f80b42b3bd4aaef3654c3485fac8d5.zip riscv-openocd-ef733b48e9f80b42b3bd4aaef3654c3485fac8d5.tar.gz riscv-openocd-ef733b48e9f80b42b3bd4aaef3654c3485fac8d5.tar.bz2 |
Switch automake handling to use --gnu mode, not --foreign.
Remove INSTALL file; automake generates a copy of the latest version.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2435 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index ff33171..dc4166d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ # not a GNU package. You can remove this line, if # have all needed files, that a GNU package needs -AUTOMAKE_OPTIONS = foreign 1.6 +AUTOMAKE_OPTIONS = gnu 1.6 nobase_dist_pkgdata_DATA = \ contrib/libdcc/dcc_stdio.c \ @@ -34,7 +34,7 @@ doxygen:: TCL_PATH = tcl # command to find paths of script files, relative to TCL_PATH -TCL_FILES := find $(srcdir)/$(TCL_PATH) -name '*.cfg' -o -name '*.tcl' | \ +TCL_FILES = find $(srcdir)/$(TCL_PATH) -name '*.cfg' -o -name '*.tcl' | \ sed -e 's,^$(srcdir)/$(TCL_PATH),,' dist-hook: @@ -61,6 +61,7 @@ distclean-local: DISTCLEANFILES = doxygen.log MAINTAINERCLEANFILES = \ + $(srcdir)/INSTALL \ $(srcdir)/configure \ $(srcdir)/Makefile.in \ $(srcdir)/depcomp \ |