.POSIX : CFLAGS = -Og -g3 -std=c99 -pedantic -Wall -Wextra -Iinclude all : test/t_integral test/t_assert test/t_integral : test/t_integral.c include/nonstd/integral.h include/internal/ssize.h $(CC) $(CFLAGS) -o $@ test/t_integral.c test/t_assert : test/t_assert.c include/nonstd/assert.h $(CC) $(CFLAGS) -o $@ test/t_assert.c