removed folder structure

This commit is contained in:
Lauchmelder 2022-01-26 16:58:32 +01:00
parent ffb486b0b9
commit ab40eeb4e2
6 changed files with 430 additions and 6 deletions

View file

@ -5,12 +5,8 @@ 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
$(CC) -Iinclude -c $< -o $@ $(CCFLAGS)
%.o: %.cpp bild.hpp
$(CC) -c $< -o $@ $(CCFLAGS)
bin/%: %.o bild.o
@mkdir -p $(@D)