bwinf_41_1/Makefile
2022-10-30 21:03:06 +01:00

25 lines
578 B
Makefile
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

all:
@make aufgabe1
aufgabe1:
@echo 'Compiling Aufgabe 1'
@echo ''
@gcc Aufgabe\ 1/main.c -o aufgabe1.out
@echo ''
runall:
@make aufgabe1
@make runA1
runA1:
@make aufgabe1
@echo 'Running Aufgabe 1:'
@echo ''
@./aufgabe1.out
@echo ''
@make clean
clean:
@echo 'Cleaning up'
@rm *.out