diff options
author | Matthieu Herrb <matthieu.herrb@laas.fr> | 2005-07-23 16:33:41 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu.herrb@laas.fr> | 2005-07-23 16:33:41 +0000 |
commit | 18b73d71673d73bfb03b238bc20e50ebf2ae48e8 (patch) | |
tree | 6ee6730ac8d93b0874c9fd1a58cb9771a4be8bd4 | |
parent | e32351b3b39517f94e976062f91403a154488359 (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 fd45374..0236761 100644 --- a/Makefile.am +++ b/Makefile.am @@ -56,8 +56,9 @@ appdefaultdir = $(sysconfdir)/X11/app-defaults APPDEFAULTFILES = \ Xgc +SUFFIXES = .ad -$(APPDEFAULTFILES): %: %.ad +.ad: cp $< $@ appdefault_DATA = $(APPDEFAULTFILES) |