[Orgmode] Makefile: update

2009-06-02 Thread Konstantin Antipin
Hi, I have a very simple feature request. Can we add additional target to the makefile in order to simplify process of keeping up to date with orgmode - development? like so: update: git pull make clean make all sudo make install It would be convenient... best,

Re: [Orgmode] Makefile: update

2009-06-02 Thread Carsten Dominik
On Jun 2, 2009, at 8:27 AM, Konstantin Antipin wrote: Hi, I have a very simple feature request. Can we add additional target to the makefile in order to simplify process of keeping up to date with orgmode - development? like so: update: git pull make clean make all

Re: [Orgmode] Makefile: update

2009-06-02 Thread Konstantin Antipin
Super! Thanks. Kostya On Tue, Jun 2, 2009 at 10:30 AM, Carsten Dominik carsten.domi...@gmail.com wrote: On Jun 2, 2009, at 8:27 AM, Konstantin Antipin wrote: Hi, I have a very simple feature request. Can we add additional target to the makefile in order to simplify process of keeping up

Re: [Orgmode] Makefile: update

2009-06-02 Thread Friedrich Delgado Friedrichs
It might seem like a nitpick, but your up2 target assumes that the program to process makefiles is called make (and not e.g. gmake and it's in the PATH). I propose: up2: update sudo $(MAKE) install As make sets the variable MAKE [see info (make)MAKE Variable ] and it's simpler to just list

Re: [Orgmode] Makefile: update

2009-06-02 Thread Carsten Dominik
Done. - Carsten On Jun 2, 2009, at 1:14 PM, Friedrich Delgado Friedrichs wrote: It might seem like a nitpick, but your up2 target assumes that the program to process makefiles is called make (and not e.g. gmake and it's in the PATH). I propose: up2: update sudo $(MAKE) install As make