15 lines
170 B
Makefile
15 lines
170 B
Makefile
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
|