From: Maxim Mamontov Date: Fri, 8 Apr 2011 13:10:34 +0000 (+0300) Subject: Add headers inctallation and fix headers cleanup X-Git-Tag: 2.407-rc3~22 X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/79355065138e6f11f7a1e5c46ade9030dcb30aaa Add headers inctallation and fix headers cleanup --- diff --git a/stglibs/Makefile.in b/stglibs/Makefile.in index d7694b45..627db8ab 100644 --- a/stglibs/Makefile.in +++ b/stglibs/Makefile.in @@ -63,15 +63,20 @@ includes: $(INCS) clean: rm -f deps $(PROG) *.o *.a *.so tags *.*~ for file in $(INCS); do \ - rm -f $(DIR_INCLUDE)/$$file; \ + rm -f $(DIR_INCLUDE)/stg/$$file; \ done install: $(PROG) mkdir -m $(DIR_MODE) -p $(PREFIX)/usr/lib/stg install -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/lib/stg/$(PROG) + mkdir -m $(DIR_MODE) -p $(PREFIX)/usr/include/stg + install -m $(BIN_MODE) -o $(OWNER) -t $(PREFIX)/usr/include/stg/ $(INCS) uninstall: rm -f $(PREFIX)/usr/lib/stg/$(PROG) + for file in $(INCS); do \ + rm -f $(PREFIX)/usr/include/stg/$$file; \ + done ifneq ($(MAKECMDGOALS),includes) ifneq ($(MAKECMDGOALS),clean)