From ddf83a9e1d4826931adaa439400fa400961c9618 Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Thu, 20 Jan 2022 15:48:39 +0100 Subject: [PATCH] updated makefile --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2c43fd5..1c516c0 100644 --- a/Makefile +++ b/Makefile @@ -3,12 +3,13 @@ CCFLAGS = -std=c++14 -Wall all: bin/imageviewer bin/smooth bin/edgedetect +rebuild: clean all + imageviewer: bin/imageviewer smooth: bin/smooth edgedetect: bin/edgedetect %.o: src/%.cpp include/bild.hpp - @mkdir -p $(@D) $(CC) -Iinclude -c $< -o $@ $(CCFLAGS) bin/%: %.o bild.o