diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-10-03 10:34:53 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-10-03 10:34:53 +0200 |
commit | 6cda6a35647b5faad8914b66f277e5bf645bbfd2 (patch) | |
tree | 7adb1dd155bc6c1ac09016a637ffa1fcaae27bf7 /week-6/makefile | |
parent | 5c8d2ae4da91571f92f26d6e8352538c043e6b56 (diff) |
week 6 huiswerk toegevoegd
Diffstat (limited to 'week-6/makefile')
-rw-r--r-- | week-6/makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/week-6/makefile b/week-6/makefile new file mode 100644 index 0000000..3b71b5b --- /dev/null +++ b/week-6/makefile @@ -0,0 +1,24 @@ +CC = gcc +LD = gcc +RM = rm -f +TARGET = main + +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) + +compile_commands: clean + compiledb make + |