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-$(VERSION)
Sanel Zukan <san...@gmail.com> writes: > 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/Makefile > @@ -28,6 +28,7 @@ $(OBJ): config.h config.mk > > st: $(OBJ) > $(CC) -o $@ $(OBJ) $(STLDFLAGS) > + $(RM) config.h > > clean: > rm -f st $(OBJ) st-$(VERSION).tar.gz > > > Hiltjo Posthuma <hil...@codemadness.org> writes: >> 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 for the terminal emulator or reusing the terminal emulator code. >> >> There are too many features and fixes to list, for an overview type: >> git log 0.7..0.8 >> >> Thanks goes out to all the contributors. >> >> -- >> Kind regards, >> Hiltjo