X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/015efefb3fcbf0613cefc6826eb92c0f4aec25f0..559d32bc2789dc69a7c19598a31f485c6caaff11:/projects/convertor/Makefile diff --git a/projects/convertor/Makefile b/projects/convertor/Makefile index a143687c..86ab6ed3 100644 --- a/projects/convertor/Makefile +++ b/projects/convertor/Makefile @@ -9,10 +9,10 @@ PROG = convertor SRCS = ./main.cpp \ ./settings_impl.cpp -STGLIBS = -lstg_logger \ - -lstg_common \ +STGLIBS = -lstglogger \ + -lstgcommon \ -ldotconfpp \ - -lstg_crypto + -lstgcrypto LIBS += $(LIB_THREAD) @@ -29,7 +29,7 @@ OBJS = $(notdir $(patsubst %.cpp, %.o, $(patsubst %.c, %.o, $(SRCS)))) CXXFLAGS += -Wall LDFLAGS += -Wl,-E -L$(DIR_LIB) -Wl,-rpath,$(DIR_LIB) -vpath %.so $(DIR_LIB) +vpath %.a $(DIR_LIB) .PHONY: all clean distclean libs plugins install uninstall all: libs plugins $(PROG) ../../Makefile.conf @@ -41,7 +41,7 @@ plugins: libs $(MAKE) -C $(DIR_PLUGINS) $(PROG): $(OBJS) $(STGLIBS) - $(CC) $^ $(LDFLAGS) $(LIBS) -o $(PROG) + $(CXX) $^ $(LDFLAGS) $(LIBS) -o $(PROG) clean: rm -f deps $(PROG) *.o tags *.*~ .OS