Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
fix: added missing boost dependency to make for a few classes (#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
dcslin authored and ledw committed Feb 18, 2019
1 parent 36f1a95 commit 4f42c72
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions makefile_py
Expand Up @@ -48,7 +48,7 @@ normalize.o: src/utils/normalize.cpp src/utils/normalize.h
$(CXX) $(CXXFLAGS) -g -c src/utils/normalize.cpp

dict.o: src/dict.cpp src/dict.h src/utils/args.h
$(CXX) $(CXXFLAGS) -g -c src/dict.cpp
$(CXX) $(CXXFLAGS) $(INCLUDES) -g -c src/dict.cpp

args.o: src/utils/args.cpp src/utils/args.h
$(CXX) $(CXXFLAGS) -g -c src/utils/args.cpp
Expand All @@ -72,13 +72,13 @@ proj_test: proj.o proj_test.o gtest_main.a
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -lpthread $^ -o $@

data.o: parser.o src/data.cpp src/data.h
$(CXX) $(CXXFLAGS) -g -c src/data.cpp -o data.o
$(CXX) $(CXXFLAGS) $(INCLUDES) -g -c src/data.cpp -o data.o

utils.o: src/utils/utils.cpp src/utils/utils.h
$(CXX) $(CXXFLAGS) -g -c src/utils/utils.cpp -o utils.o
$(CXX) $(CXXFLAGS) $(INCLUDES) -g -c src/utils/utils.cpp -o utils.o

doc_data.o: doc_parser.o data.o src/doc_data.cpp src/doc_data.h
$(CXX) $(CXXFLAGS) -g -c src/doc_data.cpp -o doc_data.o
$(CXX) $(CXXFLAGS) $(INCLUDES) -g -c src/doc_data.cpp -o doc_data.o

parser.o: dict.o src/parser.cpp src/parser.h
$(CXX) $(CXXFLAGS) $(INCLUDES) -g -c src/parser.cpp -o parser.o
Expand Down

0 comments on commit 4f42c72

Please sign in to comment.