Bildverarbeitung2/Makefile

18 lines
229 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:48:39 +00:00
rebuild: clean all
2022-01-26 15:58:32 +00:00
%.o: %.cpp bild.hpp
$(CC) -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-22 12:40:00 +00:00
@rm -rf bin