aboutsummaryrefslogtreecommitdiff
path: root/week.mk
blob: dfb9c2031602a700dfde0756900b00af7c5c5507 (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
CC = g++
LD = g++
RM = rm -f
TARGET = main
OUTPUT_ZIP = Huiswerk_2180996.zip

LFLAGS += -lstdc++

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

all: main

%.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)