Bildverarbeitung2/Makefile
2022-01-26 16:58:32 +01:00

18 lines
229 B
Makefile

CC = g++
CCFLAGS = -std=c++14 -Wall
all: bin/imageviewer bin/smooth bin/edgedetect
rebuild: clean all
%.o: %.cpp bild.hpp
$(CC) -c $< -o $@ $(CCFLAGS)
bin/%: %.o bild.o
@mkdir -p $(@D)
$(CC) $^ -o $@
clean:
@rm -rf bin