]> git.stg.codes - stg.git/blobdiff - projects/sgconf_xml/Makefile
Fixes due to stupid behaviour of BSD-like install.
[stg.git] / projects / sgconf_xml / Makefile
index b7ebca0addfb67ba8950e00ba94087d9383ea135..df79bbdb59835525f4512a9fb3844b3491c1d853 100644 (file)
@@ -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
@@ -66,7 +67,13 @@ distclean: clean
 install: install-bin install-data
 
 install-bin:
-       install -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/sbin/$(PROG)
+ifeq ($(DEBUG), yes)
+       mkdir -m $(DIR_MODE) -p $(PREFIX)/usr/bin
+       install -m $(BIN_MODE) -o $(OWNER) $(PROG) $(PREFIX)/usr/bin/$(PROG)
+else
+       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
 
 uninstall: uninstall-bin uninstall-data