Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Makefile 409 B
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