Files
mpc/Makefile

14 lines
192 B
Makefile
Raw Normal View History

2013-09-19 20:57:40 +01:00
CC = gcc
2014-01-10 10:03:25 +00:00
CFLAGS = -ansi -pedantic -Wall -Werror -g
2013-09-19 20:57:40 +01:00
TESTS = $(wildcard tests/*.c)
all: check
check: $(TESTS) mpc.c
2013-10-04 19:28:13 +01:00
$(CC) $(CFLAGS) $^ -lm -o test
2013-09-19 20:57:40 +01:00
./test
clean:
2014-01-21 10:23:58 -05:00
rm test