diff options
author | Matthieu Herrb <matthieu.herrb@laas.fr> | 2005-07-17 20:11:01 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu.herrb@laas.fr> | 2005-07-17 20:11:01 +0000 |
commit | a6905c610f37091082698d50fec19e688d74db27 (patch) | |
tree | da0f9ddb163888736f4b19be0794baaf4ccf306e /Makefile.am | |
parent | ce1447d0a8b2a7fc3a36f11eed69cd14be397ffe (diff) |
fix rules to work with non-GNU make and outside of $srcdir
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 56c5fad..a106921 100644 --- a/Makefile.am +++ b/Makefile.am @@ -38,8 +38,9 @@ appdefaultdir = $(sysconfdir)/X11/app-defaults APPDEFAULTFILES = \ Viewres +SUFFIXES = .ad -$(APPDEFAULTFILES): %: %.ad +.ad: cp $< $@ appdefault_DATA = $(APPDEFAULTFILES) |