diff options
author | Matthieu Herrb <matthieu.herrb@laas.fr> | 2005-07-17 18:38:04 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu.herrb@laas.fr> | 2005-07-17 18:38:04 +0000 |
commit | 333ef4d5389bc8dcdb4ddc8b68ed286c02332721 (patch) | |
tree | 2b8e66b32f843beea19e91eeb566149031fef8ab | |
parent | c8cf93cc24bcdcc401af5845a0ae69f952cce53d (diff) |
Convert app-defaults rules to work with non-GNU make
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index b371a4e..f695862 100644 --- a/Makefile.am +++ b/Makefile.am @@ -41,7 +41,9 @@ EXTRA_DIST = \ APPDEFAULTFILES = \ B4light -$(APPDEFAULTFILES): %: %.ad +SUFFIXES = .ad + +.ad: cp $< $@ appdefault_DATA = $(APPDEFAULTFILES) |