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 | 375d4ff16a93c5e1874b1a21c96a9549475ae6c4 (patch) | |
tree | 457468a310b98fb204382798a02e0bb255d34e46 | |
parent | f9b186fdd589267fc8d448ffc5da6d775afe01f2 (diff) |
fix rules to work with non-GNU make and outside of $srcdir
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 1103f6f..7ef2ddc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -43,8 +43,9 @@ appdefaultdir = $(sysconfdir)/X11/app-defaults APPDEFAULTFILES = \ Clock-col +SUFFIXES = .ad -$(APPDEFAULTFILES): %: %.ad +.ad: cp $< $@ appdefault_DATA = $(APPDEFAULTFILES) |