updated makefile

This commit is contained in:
Lauchmelder 2022-01-20 15:27:31 +01:00
parent fa898e2d79
commit 30c043d087
7 changed files with 8812 additions and 14 deletions

View file

@ -1,16 +1,19 @@
default: imageviewer smooth edgedetect CC = g++
CCFLAGS = -std=c++14 -Wall
imageviewer: folder src/Bild.cpp src/ImageViewer.cpp all: bin/imageviewer bin/smooth bin/edgedetect
clang++ -o build/imageviewer src/Bild.cpp src/ImageViewer.cpp -I include -std=c++14 -Weverything -Wno-c++98-compat
smooth: folder src/Bild.cpp src/Smooth.cpp imageviewer: bin/imageviewer
clang++ -o build/smooth src/Bild.cpp src/Smooth.cpp -I include -std=c++14 -Weverything -Wno-c++98-compat smooth: bin/smooth
edgedetect: bin/edgedetect
edgedetect: folder src/Bild.cpp src/EdgeDetect.cpp %.o: src/%.cpp include/bild.hpp
clang++ -o build/edetect src/Bild.cpp src/EdgeDetect.cpp -I include -std=c++14 -Weverything -Wno-c++98-compat @mkdir -p $(@D)
$(CC) -Iinclude -c $< -o $@ $(CCFLAGS)
folder: bin/%: %.o bild.o
mkdir -p build @mkdir -p $(@D)
$(CC) $^ -o $@
clean: clean:
rm -rf build @rm -rf bin

8795
res/f14_modified.ascii.pgm Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,4 +1,4 @@
#include "Bild.hpp" #include "bild.hpp"
#include <iostream> #include <iostream>
#include <sstream> #include <sstream>

View file

@ -2,7 +2,7 @@
* Reads a PGM file and performs edge detection, then writes the result to disk * Reads a PGM file and performs edge detection, then writes the result to disk
*/ */
#include <iostream> #include <iostream>
#include "Bild.hpp" #include "bild.hpp"
int main(int argc, char** argv) int main(int argc, char** argv)
{ {

View file

@ -2,7 +2,7 @@
* Displays a given PGM image in the console using ASCII characters * Displays a given PGM image in the console using ASCII characters
*/ */
#include <iostream> #include <iostream>
#include "Bild.hpp" #include "bild.hpp"
int main(int argc, char** argv) int main(int argc, char** argv)
{ {

View file

@ -2,7 +2,7 @@
* Reads a PGM image and smooths it by some amount, then writes it back to disk * Reads a PGM image and smooths it by some amount, then writes it back to disk
*/ */
#include <iostream> #include <iostream>
#include "Bild.hpp" #include "bild.hpp"
int main(int argc, char** argv) int main(int argc, char** argv)
{ {