bwinf_41_1/Makefile

26 lines
578 B
Makefile
Raw Normal View History

2022-10-30 21:03:06 +01:00
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