aboutsummaryrefslogtreecommitdiff
path: root/oop2eindopdr/makefile
blob: dac4a0670634b891167c19d69f23cd8a60bf50b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
CC = g++
LD = g++
RM = rm -f
TARGET = main
OUTPUT_ZIP = Eindopdracht_2180996.zip

CFLAGS += -g
CFLAGS += -std=c++17
LFLAGS += -lstdc++ -lcpr -lzip

SRCS := $(wildcard *.cpp)
OBJS := $(patsubst %.cpp,%.o, $(SRCS))

all: $(TARGET)

%.o: %.cpp
	$(CC) -c $(CFLAGS) $< -o $@

$(TARGET): $(OBJS)
	$(LD) $^ $(LFLAGS) -o $@

clean:
	$(RM) $(TARGET) $(OBJS) $(OUTPUT_ZIP)

compile_commands: clean
	compiledb make

zip: all
	zip -q $(OUTPUT_ZIP) makefile $(wildcard *.cpp) $(wildcard *.h) $(wildcard *.hpp)