13 lines
203 B
Makefile
13 lines
203 B
Makefile
CC = gcc
|
|
CFLAGS = -ansi -Wall -Wpedantic -Werror -Wno-unused -g
|
|
|
|
TESTS = $(wildcard tests/*.c)
|
|
|
|
all: check
|
|
|
|
check: $(TESTS) mpc.c
|
|
$(CC) $(CFLAGS) $^ -o test
|
|
./test
|
|
|
|
clean:
|
|
rm test.exe
|