X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/3478ff27cf6f9d36357dc914dc874c8e7730837a..8e739b36a5c795435e2820323e00da1dd8974e59:/stglibs/Makefile.in diff --git a/stglibs/Makefile.in b/stglibs/Makefile.in index d7694b45..a0c854e6 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 $(DATA_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) @@ -84,7 +89,7 @@ endif deps: $(SRCS) ../../Makefile.conf @>deps ;\ for file in $(SRCS); do\ - echo "`$(CC) $(CXXFLAGS) $(SEARCH_DIRS) $(DEFS) -MM -MG $$file` Makefile ../../Makefile.conf" >> deps ;\ + echo "`$(CC) $(CXXFLAGS) $(SEARCH_DIRS) $(DEFS) -MM $$file` Makefile ../../Makefile.conf" >> deps ;\ echo -e '\t$$(CC) $(CXXFLAGS) $(SEARCH_DIRS) $(DEFS) -c $$<' >> deps ;\ done