]> git.stg.codes - stg.git/blobdiff - projects/sgauth/Makefile
COMMON_SETTINGS removed from the project
[stg.git] / projects / sgauth / Makefile
index 47488cc2c94421e1fd120e21bc00573902443500..12c7b9fc69744df74109f7599f457b6c15d98fe0 100644 (file)
@@ -15,11 +15,9 @@ STGLIBS =  -lconffiles \
            -lia_auth_c \
            -lcommon_settings
 
-LIBS += $(LIB_THREAD) \
-       -lexpat
+LIBS += $(LIB_THREAD)
 
 ifeq ($(OS),linux)
-LIBS += -ldl
 else
 LIBS += -lintl \
         -lc
@@ -58,13 +56,12 @@ distclean: clean
 install: install-bin install-data
 
 install-bin:
-       mkdir -m $(BIN_MODE) -p $(PREFIX)/usr/sbin
        install -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/sbin/$(PROG)
        $(MAKE) -C $(DIR_LIBSRC) install
 
 install-data:
        # Install etc
-       mkdir -m $(DATA_MODE) -p $(PREFIX)/etc
+       mkdir -m $(DIR_MODE) -p $(PREFIX)/etc
        install -m $(DATA_MODE) -o $(OWNER) ./sgauth.conf $(PREFIX)/etc/sgauth.conf
 
 uninstall: uninstall-bin uninstall-data
@@ -74,7 +71,7 @@ uninstall-bin:
 
 uninstall-data:
        # Uninstall etc
-       rm -f $(PREFIX)/etc/stargazer/sgauth.conf
+       rm -f $(PREFIX)/etc/sgauth.conf
 
 
 ifneq ($(MAKECMDGOALS),distclean)
@@ -93,5 +90,3 @@ deps: $(SRCS) ../../Makefile.conf sgauth.css
          echo "`$(CC) $(CXXFLAGS) $(SEARCH_DIRS) -MM $$file` Makefile" >> deps ;\
          echo -e '\t$$(CC) -c $$< $(CXXFLAGS) $(SEARCH_DIRS) $(DEFS)' >> deps ;\
        done
-
-