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