]> git.stg.codes - stg.git/blobdiff - stglibs/Makefile.in
Allow user-defined 'ar' and 'ranlib'.
[stg.git] / stglibs / Makefile.in
index 8c97fae8f1d60066a00c55958869c35a857b6147..a378f4899697919c7521ad99c4e5a8da79b469f8 100644 (file)
@@ -28,15 +28,20 @@ CFLAGS += -fPIC $(SEARCH_DIRS) $(DEFS)
 all: $(PROG)
 
 $(PROG): $(OBJS)
-       ar rc lib$(LIB_NAME).a $(OBJS)
-       ranlib lib$(LIB_NAME).a
+       $(AR) rc lib$(LIB_NAME).a $(OBJS)
+       $(RANLIB) lib$(LIB_NAME).a
 
 clean:
-       rm -f deps $(PROG) *.o *.a *.so tags *.*~ 
+       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/
 
@@ -58,12 +63,12 @@ deps:       $(SRCS) ../../Makefile.conf
        @>deps ;\
        for file in $(SRCS); do\
          echo "$$file" | grep ".c$$" > /dev/null;\
-         if [ $$? == 0 ];\
+         if [ $$? -eq 0 ];\
          then\
            echo "`$(CC) $(CFLAGS) -MM $$file` Makefile ../../Makefile.conf" >> deps ;\
-           echo -e '\t$$(CC) $(CFLAGS) -c $$<' >> deps ;\
+           printf '%b\n' '\t$$(CC) $(CFLAGS) -c $$<' >> deps ;\
          else\
            echo "`$(CXX) $(CXXFLAGS) -MM $$file` Makefile ../../Makefile.conf" >> deps ;\
-           echo -e '\t$$(CXX) $(CXXFLAGS) -c $$<' >> deps ;\
+           printf '%b\n' '\t$$(CXX) $(CXXFLAGS) -c $$<' >> deps ;\
          fi;\
        done