mirror of
https://github.com/quatalog/quatalog.git
synced 2025-11-30 16:17:25 +00:00
Add Makefile
This commit is contained in:
parent
33bfbaff4b
commit
7b890afb19
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