
* python/Makefile.am: Do not use `$<' outside suffix rules. --- swilena/ChangeLog | 6 ++++++ swilena/python/Makefile.am | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/swilena/ChangeLog b/swilena/ChangeLog index c7daa94..ddae73d 100644 --- a/swilena/ChangeLog +++ b/swilena/ChangeLog @@ -1,3 +1,9 @@ +2014-06-26 Roland Levillain <roland@lrde.epita.fr> + + Make Swilena more compatible with BSD Make. + + * python/Makefile.am: Do not use `$<' outside suffix rules. + 2014-06-25 Roland Levillain <roland@lrde.epita.fr> Remove extended characters from Swilena. diff --git a/swilena/python/Makefile.am b/swilena/python/Makefile.am index d77cdc4..b72bc18 100644 --- a/swilena/python/Makefile.am +++ b/swilena/python/Makefile.am @@ -1,5 +1,5 @@ -# Copyright (C) 2008, 2009, 2010, 2012, 2013 EPITA Research and Development -# Laboratory (LRDE). +# Copyright (C) 2008, 2009, 2010, 2012, 2013, 2014 EPITA Research and +# Development Laboratory (LRDE). # # This file is part of Olena. # @@ -67,7 +67,7 @@ all-local: data.py EXTRA_DIST = data.py.in data.py: data.py.in Makefile rm -f $@ $@.tmp - $(edit) $< >$@.tmp + $(edit) data.py.in >$@.tmp chmod a-w $@.tmp mv $@.tmp $@ -- 1.7.10.4