8 lines
153 B
Makefile
8 lines
153 B
Makefile
CC=gcc
|
|
SOURCE_FILE=MMS24-25.c
|
|
OPTS=-lm
|
|
|
|
all: testInterpolation
|
|
|
|
testInterpolation:
|
|
$(CC) testInterpolation.c $(SOURCE_FILE) -o testInterpolation $(OPTS)
|