X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/8c6fa3fbaccc22127280bf77a48fab5a3ee0716e..46b0747592074017ff0ea4b33d4a7194235886e5:/stglibs/Makefile.in diff --git a/stglibs/Makefile.in b/stglibs/Makefile.in deleted file mode 100644 index 11dfcfb1..00000000 --- a/stglibs/Makefile.in +++ /dev/null @@ -1,74 +0,0 @@ -############################################################################### -# $Id: Makefile.in,v 1.28 2009/03/03 15:50:14 faust Exp $ -############################################################################### - -include ../../Makefile.conf - -PROG = lib$(LIB_NAME).a - -SEARCH_DIRS = -I ../../include -I . -I ./include - -ifeq ($(STG_TIME), yes) -DEFS += -DSTG_TIME -endif - -ifneq ($(LIB_DEFS),) -DEFS += $(LIB_DEFS) -endif - -ifneq ($(LIB_INCS),) -SEARCH_DIRS += $(LIB_INCS) -endif - -OBJS = $(notdir $(patsubst %.cpp, %.o, $(patsubst %.c, %.o, $(SRCS)))) - -CXXFLAGS += -fPIC $(SEARCH_DIRS) $(DEFS) -CFLAGS += -fPIC $(SEARCH_DIRS) $(DEFS) - -all: $(PROG) - -$(PROG): $(OBJS) - ar rc lib$(LIB_NAME).a $(OBJS) - ranlib lib$(LIB_NAME).a - -clean: - rm -f deps $(PROG) *.o *.a *.so tags *.*~ - -install: $(PROG) -ifeq ($(DEBUG), yes) - mkdir -m $(DIR_MODE) -p $(PREFIX)/usr/lib/stg - install -m $(BIN_MODE) -o $(OWNER) $(PROG) $(PREFIX)/usr/lib/stg/$(PROG) -else - mkdir -m $(DIR_MODE) -p $(PREFIX)/usr/lib/stg - install -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/lib/stg/$(PROG) -endif - mkdir -m $(DIR_MODE) -p $(PREFIX)/usr/include/stg - install -m $(DATA_MODE) -o $(OWNER) $(addprefix include/stg/,$(INCS)) $(PREFIX)/usr/include/stg/ - -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) -ifneq ($(MAKECMDGOALS),uninstall) --include deps -endif -endif -endif - -deps: $(SRCS) ../../Makefile.conf - @>deps ;\ - for file in $(SRCS); do\ - echo "$$file" | grep ".c$$" > /dev/null;\ - if [ $$? -eq 0 ];\ - then\ - echo "`$(CC) $(CFLAGS) -MM $$file` Makefile ../../Makefile.conf" >> deps ;\ - printf '%b\n' '\t$$(CC) $(CFLAGS) -c $$<' >> deps ;\ - else\ - echo "`$(CXX) $(CXXFLAGS) -MM $$file` Makefile ../../Makefile.conf" >> deps ;\ - printf '%b\n' '\t$$(CXX) $(CXXFLAGS) -c $$<' >> deps ;\ - fi;\ - done