diff --git a/src/Makefile b/src/Makefile index 2f111dc..3efc00a 100644 --- a/src/Makefile +++ b/src/Makefile @@ -19,11 +19,11 @@ $(libname): $(o) %.o: %.cpp - $(CXX) -c $(CXXFLAGS) -I$(GLOBAL_WORKING_DIR)/pikotools $< + $(CXX) -c $(CXXFLAGS) -I$(GLOBAL_WORKING_DIR)/pikotools/src $< depend: - makedepend -Y. -I$(global_relative_working_dir)/pikotools -f- *.cpp > Makefile.dep + makedepend -Y. -I$(global_relative_working_dir)/pikotools/src -f- *.cpp > Makefile.dep echo -n "o = " > Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep