mirror of
https://github.com/quatalog/quatalog.git
synced 2024-11-08 16:14:24 +00:00
12 lines
267 B
Makefile
12 lines
267 B
Makefile
|
CXX = clang++
|
||
|
CXXFLAGS = -O2 -march=native -I 3rdparty/jsoncpp -Wall -std=c++17
|
||
|
|
||
|
CourseOfferingsScraper: CourseOfferingsScraper.cpp
|
||
|
|
||
|
%.o: %.cpp %.hpp
|
||
|
$(CXX) $(CXXFLAGS) -o $@
|
||
|
|
||
|
jsoncpp/3rdparty/dist:
|
||
|
git submodule update --init
|
||
|
cd 3rdparty/jsoncpp; ./amalgamate.py
|