mirror of
https://github.com/quatalog/quatalog.git
synced 2024-11-08 08:04:24 +00:00
21 lines
508 B
Makefile
21 lines
508 B
Makefile
CXX = clang++
|
|
CXXFLAGS = -O2 -march=native -Wall -std=c++17 -I../3rdparty/jsoncpp/dist/
|
|
vpath %.cpp ../courseinfo_scraper
|
|
|
|
.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 $@
|
|
|
|
../3rdparty/jsoncpp/dist/jsoncpp.cpp:
|
|
git submodule update --init
|
|
cd ../3rdparty/jsoncpp; ./amalgamate.py
|
|
|
|
%.o: %.cpp %.hpp
|
|
$(CXX) $(CXXFLAGS) $? -o $@
|