mirror of
https://github.com/quatalog/quatalog.git
synced 2025-11-29 07:47:17 +00:00
Update Makefile
This commit is contained in:
parent
bd6624c710
commit
9b7790960e
|
|
@ -2,8 +2,13 @@ CXX = clang++
|
||||||
CXXFLAGS = -O2 -march=native -Wall -std=c++17 -I../3rdparty/jsoncpp/dist/
|
CXXFLAGS = -O2 -march=native -Wall -std=c++17 -I../3rdparty/jsoncpp/dist/
|
||||||
vpath %.cpp ../src
|
vpath %.cpp ../src
|
||||||
|
|
||||||
|
.PHONY: all
|
||||||
|
all: CourseOfferingsScraper GenerateHtml
|
||||||
|
|
||||||
CourseOfferingsScraper: CourseOfferingsScraper.cpp json.o
|
CourseOfferingsScraper: CourseOfferingsScraper.cpp json.o
|
||||||
|
|
||||||
|
GenerateHtml: GenerateHtml.cpp json.o
|
||||||
|
|
||||||
json.o: ../3rdparty/jsoncpp/dist/jsoncpp.cpp
|
json.o: ../3rdparty/jsoncpp/dist/jsoncpp.cpp
|
||||||
$(CXX) -c $(CXXFLAGS) $? -o $@
|
$(CXX) -c $(CXXFLAGS) $? -o $@
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue