MMS-Loesung-2024-25/Makefile

15 lines
159 B
Makefile

CC=gcc
SOURCE_FILE=MMS24-25.c
OPTS=-lm
all: clean tests run
clean:
rm ./tests || true
tests:
$(CC) tests.c $(SOURCE_FILE) -o tests $(OPTS)
run:
./tests