aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 69b46fb665605ec3bc4276c78154eb92586f880d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
CXX = g++
CXXFLAGS = -Wall -Wextra -std=c++11 -O2 -fwrapv
LDFLAGS = -pthread

.PHONY: all clean remake

all: roots

clean:
	rm -f roots *.o

remake: clean
	$(MAKE) all


roots: $(patsubst %.cpp,%.o,$(wildcard *.cpp))
	$(CXX) -o $@ $^ $(LDFLAGS)

%.o: %.cpp $(wildcard *.h)
	$(CXX) $(CXXFLAGS) -c -o $@ $<