summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <Alan.Coopersmith@sun.com>2005-07-26 15:44:02 +0000
committerAlan Coopersmith <Alan.Coopersmith@sun.com>2005-07-26 15:44:02 +0000
commitc3da8169ed2876732a86b7c1cb3d4e3cb6ba5046 (patch)
tree0a841999e06488c1e0f1600bf8d1f7ae7f06ada5
parent1234c030c16eb1e0d6f8a8655bc1b093e43ef288 (diff)
Replace more GNU make-ism's with more portable macros
-rw-r--r--Makefile.am5
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)