Bildverarbeitung2/Makefile

19 lines
323 B
Makefile
Raw Normal View History

2022-01-20 14:27:31 +00:00
CC = g++
CCFLAGS = -std=c++14 -Wall
2022-01-17 04:35:18 +00:00
2022-01-20 14:27:31 +00:00
all: bin/imageviewer bin/smooth bin/edgedetect
2022-01-17 04:35:18 +00:00
2022-01-20 14:27:31 +00:00
imageviewer: bin/imageviewer
smooth: bin/smooth
edgedetect: bin/edgedetect
2022-01-17 04:35:18 +00:00
2022-01-20 14:27:31 +00:00
%.o: src/%.cpp include/bild.hpp
@mkdir -p $(@D)
$(CC) -Iinclude -c $< -o $@ $(CCFLAGS)
2022-01-17 04:35:18 +00:00
2022-01-20 14:27:31 +00:00
bin/%: %.o bild.o
@mkdir -p $(@D)
$(CC) $^ -o $@
2022-01-17 04:35:18 +00:00
clean:
2022-01-20 14:27:31 +00:00
@rm -rf bin