X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/04d7ddb9da330539a3026cd26b4ba6d0ee82a395..a903ce1ab463173c9a0af322c4c2f23076d21310:/stglibs/Makefile.in

diff --git a/stglibs/Makefile.in b/stglibs/Makefile.in
index b768b163..b5d1195c 100644
--- a/stglibs/Makefile.in
+++ b/stglibs/Makefile.in
@@ -35,8 +35,11 @@ clean:
 	rm -f deps $(PROG) *.o *.a *.so tags *.*~ 
 
 install: $(PROG)
-	mkdir -m $(DIR_MODE) -p $(PREFIX)/usr/lib/stg
-	install -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/lib/stg/$(PROG)
+ifeq ($(DEBUG), yes)
+	install -D -m $(BIN_MODE) -o $(OWNER) $(PROG) $(PREFIX)/usr/lib/stg/$(PROG)
+else
+	install -D -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/
 
@@ -61,9 +64,9 @@ deps:	$(SRCS) ../../Makefile.conf
 	  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