Start implementing tests

Cette révision appartient à :
2021-06-05 14:07:11 +02:00
Parent 0b13f551f4
révision 85c01899a9
3 fichiers modifiés avec 175 ajouts et 0 suppressions

17
Makefile Fichier normal
Voir le fichier

@ -0,0 +1,17 @@
prefix = /usr/local
bindir = $(prefix)/bin
CFLAGS = -std=c99 -Wall -Wextra -pedantic
.DEFAULT_GOAL := test
clean:
rm -f test
test: test.c
$(CC) test.c -g $(CFLAGS) -o test
check: test
./test.sh
.PHONY: check