From 9eb8aa6bab40bd58e70cb6124e462e1a3d47edb7 Mon Sep 17 00:00:00 2001 From: lonkaars Date: Thu, 22 Dec 2022 14:31:10 +0100 Subject: eindopdracht beginsel --- oop2eindopdr/makefile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 oop2eindopdr/makefile (limited to 'oop2eindopdr/makefile') diff --git a/oop2eindopdr/makefile b/oop2eindopdr/makefile new file mode 100644 index 0000000..a4235d4 --- /dev/null +++ b/oop2eindopdr/makefile @@ -0,0 +1,28 @@ +CC = g++ +LD = g++ +RM = rm -f +TARGET = main +OUTPUT_ZIP = Eindopdracht_2180996.zip + +LFLAGS += -lstdc++ + +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) + -- cgit v1.2.3