]> begriffs open source - libnonstd/blob - Makefile
Improvements to ssize_t internal files
[libnonstd] / Makefile
1 .POSIX :
2
3 CFLAGS = -Og -g3 -std=c99 -pedantic -Wall -Wextra -Iinclude
4
5 all : test/t_integral test/t_assert
6
7 test/t_integral : test/t_integral.c include/nonstd/integral.h include/internal/ssize.h
8         $(CC) $(CFLAGS) -o $@ test/t_integral.c
9
10 test/t_assert : test/t_assert.c include/nonstd/assert.h
11         $(CC) $(CFLAGS) -o $@ test/t_assert.c