all: loesung WARNINGS = -Wall -Werror OPTIONAL = #-Werror -Wpedantic DEBUG = -ggdb -fno-omit-frame-pointer OPTIMIZE = -O3 -std=c11 loesung: Makefile loesung.c $(CC) -o $@ $(WARNINGS) $(OPTIONAL) $(DEBUG) $(OPTIMIZE) loesung.c clean: rm -f loesung # Builder will call this to install the application before running. install: #nothing # Builder uses this target to run your application. run: ./loesung