diff options
author | Matthieu Herrb <matthieu.herrb@laas.fr> | 2005-07-23 16:21:03 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu.herrb@laas.fr> | 2005-07-23 16:21:03 +0000 |
commit | f92b9fbe0d87f9702d4e3b3743cf110cd9cdaf30 (patch) | |
tree | 313e1a960b735928f0fe742c98af2fba150ab29d | |
parent | 875c7f079c6230e8a09e53904e64277360ec86c7 (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 0dbb739..7a670ef 100644 --- a/Makefile.am +++ b/Makefile.am @@ -40,7 +40,9 @@ appdefaultdir = $(sysconfdir)/X11/app-defaults APPDEFAULTFILES = \ Xfd -$(APPDEFAULTFILES): %: %.ad +SUFFIXES = .ad + +.ad: cp $< $@ appdefault_DATA = $(APPDEFAULTFILES) |