Re: PATCH: make clean Re: [dev] [st] release 0.8

2018-03-15 Thread Quentin Rameau
> Hm... true. > > Maybe this belongs to 'make distclean'? Or be at least documented. A distclean target would be a better proposal. The Makefile is simple enough to be its own documentation.

Re: PATCH: make clean Re: [dev] [st] release 0.8

2018-03-15 Thread Sanel Zukan
Hm... true. Maybe this belongs to 'make distclean'? Or be at least documented. Best, Sanel Martin Tournoij writes: > On Thu, Mar 15, 2018, at 12:10, Sanel Zukan wrote: >> Here is small patch for 'make clean', to remove generated config.h. >> >> I had generated config.h long time ago and pullin

Re: PATCH: make clean Re: [dev] [st] release 0.8

2018-03-15 Thread Quentin Rameau
> On Thu, Mar 15, 2018, at 12:10, Sanel Zukan wrote: > > Here is small patch for 'make clean', to remove generated config.h. > > > > I had generated config.h long time ago and pulling the latest code + > > compiling it will generate funky compilation errors. > > What if I modified my config.h,

Re: PATCH: make clean Re: [dev] [st] release 0.8

2018-03-15 Thread Martin Tournoij
On Thu, Mar 15, 2018, at 12:10, Sanel Zukan wrote: > Here is small patch for 'make clean', to remove generated config.h. > > I had generated config.h long time ago and pulling the latest code + > compiling it will generate funky compilation errors. What if I modified my config.h, then those chang

Re: PATCH: make clean Re: [dev] [st] release 0.8

2018-03-15 Thread Sanel Zukan
Ooops, cleaning part was in wrong target. Attached fixed patch. Best, Sanel diff --git a/Makefile b/Makefile index 0b3cecd..1e095f0 100644 --- a/Makefile +++ b/Makefile @@ -31,6 +31,7 @@ st: $(OBJ) clean: rm -f st $(OBJ) st-$(VERSION).tar.gz + rm -f config.h dist: clean mkdir -p st-$(VE

PATCH: make clean Re: [dev] [st] release 0.8

2018-03-15 Thread Sanel Zukan
Hi, Here is small patch for 'make clean', to remove generated config.h. I had generated config.h long time ago and pulling the latest code + compiling it will generate funky compilation errors. Best, Sanel diff --git a/Makefile b/Makefile index 0b3cecd..c7c1005 100644 --- a/Makefile +++ b/Makef

[dev] [st] release 0.8

2018-03-14 Thread Hiltjo Posthuma
Hi, There is now a new release of st 0.8. There are many features and code that has been rewritten. Particulary noteworthy is now a more clear separation of the X11/Xft code and the terminal emulator logic. Some peole have shown interest in writing a Wayland port, writing specific (fuzz) tests f