]> git.stg.codes - stg.git/blobdiff - projects/sgconf/Makefile
Fixes due to stupid behaviour of BSD-like install.
[stg.git] / projects / sgconf / Makefile
index 096991221d761977ddd36c10897a4ff922d8ac55..280b40be0270e29f297338b0238099b830bc5773 100644 (file)
@@ -11,7 +11,7 @@ SRCS = ./main.cpp \
 
 STGLIBS = conffiles \
           srvconf \
-         crypto \
+          crypto \
           common
 
 STGLIBS_INCS = $(addprefix -I ../../stglibs/,$(addsuffix .lib/include,$(STGLIBS)))
@@ -22,7 +22,8 @@ LIBS += $(addprefix -lstg,$(STGLIBS)) -lexpat $(LIB_THREAD)
 ifeq ($(OS),linux)
 else
 LIBS += -lc \
-       -liconv
+        -liconv
+else
 endif
 
 SEARCH_DIRS = -I ../../include
@@ -71,9 +72,11 @@ install: install-bin
 
 install-bin:
 ifeq ($(DEBUG), yes)
-       install -D -m $(BIN_MODE) -o $(OWNER) $(PROG) $(PREFIX)/usr/bin/$(PROG)
+       mkdir -m $(DIR_MODE) -p $(PREFIX)/usr/bin
+       install -m $(BIN_MODE) -o $(OWNER) $(PROG) $(PREFIX)/usr/bin/$(PROG)
 else
-       install -D -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/bin/$(PROG)
+       mkdir -m $(DIR_MODE) -p $(PREFIX)/usr/bin
+       install -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/bin/$(PROG)
 endif
        $(MAKE) -C $(DIR_LIBSRC) install