Bildverarbeitung2/Makefile

18 lines
229 B
Makefile
Raw Normal View History

2022-01-20 15:27:31 +01:00
CC = g++
CCFLAGS = -std=c++14 -Wall
2022-01-17 05:35:18 +01:00
2022-01-20 15:27:31 +01:00
all: bin/imageviewer bin/smooth bin/edgedetect
2022-01-17 05:35:18 +01:00
2022-01-20 15:48:39 +01:00
rebuild: clean all
2022-01-26 16:58:32 +01:00
%.o: %.cpp bild.hpp
$(CC) -c $< -o $@ $(CCFLAGS)
2022-01-17 05:35:18 +01:00
2022-01-20 15:27:31 +01:00
bin/%: %.o bild.o
@mkdir -p $(@D)
$(CC) $^ -o $@
2022-01-17 05:35:18 +01:00
clean:
2022-01-22 13:40:00 +01:00
@rm -rf bin