]> git.stg.codes - stg.git/blobdiff - projects/sgconf/Makefile
Fix compilation and linkage issues
[stg.git] / projects / sgconf / Makefile
index f9f0042b2745b063d4fe2d144e5b207fb9032137..02f8d7b80bbe4b6e81ce13c5ced1e09a02088ec1 100644 (file)
@@ -9,10 +9,10 @@ PROG = sgconf
 SRCS = ./main.cpp \
        ./common_sg.cpp
 
-STGLIBS =  -lconffiles \
-           -lstg_common \
-          -lstg_crypto \
-           -lsrvconf
+STGLIBS =  -lstgconffiles \
+           -lstgsrvconf \
+           -lstgcommon \
+          -lstgcrypto
 
 LIBS += -lexpat \
        $(LIB_THREAD)
@@ -41,7 +41,7 @@ OBJS = $(notdir $(patsubst %.cpp, %.o, $(patsubst %.c, %.o, $(SRCS))))
 CXXFLAGS += -Wall
 LDFLAGS += -Wl,-E -L$(DIR_LIB) -Wl,-rpath,$(PREFIX)/usr/lib/stg -Wl,-rpath-link,$(DIR_LIB)
 
-vpath %.so $(DIR_LIB)
+vpath %.a $(DIR_LIB)
 
 .PHONY: all clean distclean libs install uninstall install-bin install-data uninstall-bin uninstall-data
 all: libs $(PROG) ../../Makefile.conf
@@ -50,7 +50,7 @@ libs:
        $(MAKE) -C $(DIR_LIBSRC)
 
 $(PROG): $(OBJS) $(STGLIBS)
-       $(CC) $^ $(LDFLAGS) $(LIBS) -o $(PROG)
+       $(CXX) $^ $(LDFLAGS) $(LIBS) -o $(PROG)
 
 clean:
        rm -f deps $(PROG) *.o tags *.*~ .OS
@@ -63,22 +63,17 @@ clean:
 distclean: clean
        rm -f ../../Makefile.conf
 
-install: install-bin install-data
+install: install-bin
 
 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:
-
-uninstall: uninstall-bin uninstall-data
+uninstall: uninstall-bin
 
 uninstall-bin:
        rm -f $(PREFIX)/usr/sbin/$(PROG)
 
-uninstall-data:
-
 
 ifneq ($(MAKECMDGOALS),distclean)
 ifneq ($(MAKECMDGOALS),clean)