diff options
author | Matthieu Herrb <matthieu.herrb@laas.fr> | 2005-07-17 20:11:02 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu.herrb@laas.fr> | 2005-07-17 20:11:02 +0000 |
commit | 526ab098fe73f9dde13b651ae8c70fbec56594c2 (patch) | |
tree | fa7c16ef049baee435580e13dbc03da1f99ca16f | |
parent | 392f5dd1907a5110c89b308ef51122b39b23dde5 (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 3661fa2..b1cce2d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -43,8 +43,9 @@ APPDEFAULTFILES = \ XCalc \ XCalc-col +SUFFIXES = .ad -$(APPDEFAULTFILES): %: %.ad +.ad: cp $< $@ appdefault_DATA = $(APPDEFAULTFILES) |