mirror of
https://github.com/quatalog/quatalog.git
synced 2024-11-08 08:04:24 +00:00
commit
cdddf8d602
11
Makefile
Normal file
11
Makefile
Normal file
|
@ -0,0 +1,11 @@
|
|||
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
|
Loading…
Reference in a new issue