X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/89b5297e5ba90c5b971d8b928ae72b13915aae10..16d1f76d5dc58c9b0000f86464c3d49a48e2aff4:/projects/sgconf_xml/Makefile diff --git a/projects/sgconf_xml/Makefile b/projects/sgconf_xml/Makefile index d0a5550c..752f05a5 100644 --- a/projects/sgconf_xml/Makefile +++ b/projects/sgconf_xml/Makefile @@ -9,10 +9,10 @@ PROG = sgconf_xml SRCS = ./main.cpp \ ./parser.cpp -LIBS = -lconffiles \ - -lstg_crypto \ - -lstg_common \ - -lsrvconf +LIBS = -lstgconffiles \ + -lstgcrypto \ + -lstgcommon \ + -lstgsrvconf LIBS += -lexpat \ $(LIB_THREAD) @@ -49,8 +49,8 @@ all: libs $(PROG) ../../Makefile.conf libs: $(MAKE) -C $(DIR_LIBSRC) -$(PROG): $(OBJS) $(LIBS) - $(CC) $^ $(LDFLAGS) -o $(PROG) +$(PROG): $(OBJS) $(STGLIBS) + $(CC) $^ $(LIBS) $(LDFLAGS) -o $(PROG) clean: rm -f deps $(PROG) *.o tags *.*~ .OS @@ -69,19 +69,11 @@ install-bin: install -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/sbin/$(PROG) $(MAKE) -C $(DIR_LIBSRC) install -install-data: - # Install etc - install -m $(DATA_MODE) -o $(OWNER) -D $(ETC_DIR)/sgconf.conf $(PREFIX)/etc/stargazer/sgconf.conf - uninstall: uninstall-bin uninstall-data uninstall-bin: rm -f $(PREFIX)/usr/sbin/$(PROG) -uninstall-data: - # Uninstall etc - rm -f $(PREFIX)/etc/stargazer/sgconf.conf - ifneq ($(MAKECMDGOALS),distclean) ifneq ($(MAKECMDGOALS),clean) @@ -95,8 +87,8 @@ deps: $(SRCS) ../../Makefile.conf $(MAKE) -C $(DIR_LIBSRC) includes @>deps ;\ for file in $(SRCS); do\ - echo "`$(CC) $(CFLAGS) $(SEARCH_DIRS) -MM $$file` Makefile" >> deps ;\ - echo -e '\t$$(CC) -c $$< $(CFLAGS) $(SEARCH_DIRS) $(DEFS)' >> deps ;\ + echo "`$(CC) $(CXXFLAGS) $(SEARCH_DIRS) -MM $$file` Makefile" >> deps ;\ + echo -e '\t$$(CC) -c $$< $(CXXFLAGS) $(SEARCH_DIRS) $(DEFS)' >> deps ;\ done