From 9b7790960eb4ace86dfd2def5a51625ca35c12b7 Mon Sep 17 00:00:00 2001 From: 3eef8a28f26fb2bcc514e6f1938929a1f931762 <116031952+3eef8a28f26fb2bcc514e6f1938929a1f931762@users.noreply.github.com> Date: Thu, 9 Feb 2023 21:35:47 -0500 Subject: [PATCH] Update Makefile --- bin/Makefile | 5 +++++ 1 file changed, 5 insertions(+) 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 $@