diff options
author | Matthieu Herrb <matthieu.herrb@laas.fr> | 2005-07-23 16:40:58 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu.herrb@laas.fr> | 2005-07-23 16:40:58 +0000 |
commit | 19cf02998290cc99fcbc94feb03647386ef595f9 (patch) | |
tree | ba9a8727bc8f7656914d6228527140fa1953ab08 | |
parent | b7533f8eb9cea84603a80e5207b4a589d3dfd444 (diff) |
fix GNU-make only app-default rule
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index a9d0dcf..e8ba747 100644 --- a/Makefile.am +++ b/Makefile.am @@ -52,7 +52,9 @@ APPDEFAULTFILES = \ XLogo-co -$(APPDEFAULTFILES): %: %.ad +SUFFIXES = .ad + +.ad: cp $< $@ appdefault_DATA = $(APPDEFAULTFILES) |