diff --git a/bin/Makefile b/bin/Makefile index 87bd666..a7345fe 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -2,8 +2,13 @@ CXX = clang++ CXXFLAGS = -O2 -march=native -Wall -std=c++17 -I../3rdparty/jsoncpp/dist/ vpath %.cpp ../src +.PHONY: all +all: CourseOfferingsScraper GenerateHtml + CourseOfferingsScraper: CourseOfferingsScraper.cpp json.o +GenerateHtml: GenerateHtml.cpp json.o + json.o: ../3rdparty/jsoncpp/dist/jsoncpp.cpp $(CXX) -c $(CXXFLAGS) $? -o $@