diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-07-26 15:44:02 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-07-26 15:44:02 +0000 |
commit | c3da8169ed2876732a86b7c1cb3d4e3cb6ba5046 (patch) | |
tree | 0a841999e06488c1e0f1600bf8d1f7ae7f06ada5 | |
parent | 1234c030c16eb1e0d6f8a8655bc1b093e43ef288 (diff) |
Replace more GNU make-ism's with more portable macros
-rw-r--r-- | Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 2a5abde..67fa26f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -41,13 +41,14 @@ appdefaultdir = $(sysconfdir)/X11/app-defaults APPDEFAULTFILES = \ XFontSel +SUFFIXES = .ad -$(APPDEFAULTFILES): %: %.ad +.ad: cp $< $@ appdefault_DATA = $(APPDEFAULTFILES) -EXTRA_DIST = $(foreach FILE, $(APPDEFAULTFILES), $(FILE).ad) +EXTRA_DIST = $(APPDEFAULTFILES:%=%.ad) CLEANFILES = $(APPDEFAULTFILES) |