aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 009c5bcbe0df3baefe4906aba7aa635bbe6816b6 (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 -g -fwrapv
TARGET = sim

.PHONY: all clean remake

all: $(TARGET)

clean:
	rm -f $(TARGET) *.o

remake: clean
	$(MAKE) all


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

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