summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu.herrb@laas.fr>2005-07-17 20:11:01 +0000
committerMatthieu Herrb <matthieu.herrb@laas.fr>2005-07-17 20:11:01 +0000
commit3fbfc8390e09c5d63a8ab37342f09784acc13485 (patch)
tree18e7ce4409ed25f76f3148eacdb77a8903f822f6
parentd15169a6a4c05a63b17ae630c9ade3b14a3d7181 (diff)
fix rules to work with non-GNU make and outside of $srcdir
-rw-r--r--Makefile.am4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index a8670dc..81f497d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -51,7 +51,9 @@ APPDEFAULTFILES = \
EXTRA_DIST = $(foreach X, $(APPDEFAULTFILES), $(X).ad)
-$(APPDEFAULTFILES): %: %.ad
+SUFFIXES = .ad
+
+.ad:
cp $< $@
appdefault_DATA = $(APPDEFAULTFILES)