aboutsummaryrefslogtreecommitdiff
path: root/oop2eindopdr/makefile
blob: 533121dd9dce8b329e5cfcfb6c0e7497277c3868 (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
CC = g++
LD = g++
RM = rm -f
TARGET = main
OUTPUT_ZIP = Eindopdracht_2180996.zip

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)