X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/b4338eb13c4c5fa33a3b86d4e88e5201c36e6401..2e6fab3ee7df25d343fb30b006126e7817dfeb12:/projects/sgauth/Makefile diff --git a/projects/sgauth/Makefile b/projects/sgauth/Makefile index 98867c5f..88e1fb9c 100644 --- a/projects/sgauth/Makefile +++ b/projects/sgauth/Makefile @@ -11,8 +11,8 @@ SRCS = ./main.cpp \ ./web.cpp STGLIBS = conffiles \ - crypto \ ia \ + crypto \ common STGLIBS_INCS = $(addprefix -I ../../stglibs/,$(addsuffix .lib/include,$(STGLIBS))) @@ -89,6 +89,13 @@ deps: $(SRCS) ../../Makefile.conf sgauth.css @>deps ;\ ./make_css.sh for file in $(SRCS); do\ - echo "`$(CC) $(CXXFLAGS) -MM $$file` Makefile" >> deps ;\ - echo -e '\t$$(CC) -c $$< $(CXXFLAGS)' >> deps ;\ + echo "$$file" | grep ".c$$" > /dev/null;\ + if [ $$? -eq 0 ];\ + then\ + echo "`$(CC) $(CFLAGS) -MM $$file` Makefile" >> deps ;\ + printf '%b\n' '\t$$(CC) $(CFLAGS) -c $$<' >> deps ;\ + else\ + echo "`$(CXX) $(CXXFLAGS) -MM $$file` Makefile" >> deps ;\ + printf '%b\n' '\t$$(CXX) $(CXXFLAGS) -c $$<' >> deps ;\ + fi;\ done