updated makefile

This commit is contained in:
Lauchmelder 2022-01-20 15:48:39 +01:00
parent 914bb670dd
commit ddf83a9e1d

View file

@ -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