diff options
author | Matthieu Herrb <matthieu.herrb@laas.fr> | 2005-07-24 10:26:39 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu.herrb@laas.fr> | 2005-07-24 10:26:39 +0000 |
commit | a4ea5c92e64b3cf7a0df17705c27e8a7abdb2f8b (patch) | |
tree | 6b6cc9af981e7c599718922cdeac6a2349b883b0 | |
parent | 48a77ca80a31851bf02cec6ab510d9f1458311a5 (diff) |
fix GNU-make only app-defaults rule
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index eed0c3a..a630a3e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -43,8 +43,9 @@ APPDEFAULTFILES = \ Xmessage \ Xmessage-color +SUFFIXES = .ad -$(APPDEFAULTFILES): %: %.ad +.ad: cp $< $@ appdefault_DATA = $(APPDEFAULTFILES) |