mirror of
https://github.com/quatalog/quatalog.git
synced 2025-02-15 07:22:40 +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/
|
||||
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 $@
|
||||
|
||||
|
|
Loading…
Reference in a new issue