summaryrefslogtreecommitdiff
path: root/graphs/piscine/tinyprintf/Makefile
blob: 6a07d90b6833caab7e079472081013c9a1615aa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CC=gcc
CFLAGS=-std=c99 -Wall -Wextra -Werror -Wvla -pedantic
LDLIBS=-lcriterion

all: src/tinyprintf.o

check: src/tinyprintf.o
	$(CC) $(CFLAGS) -o tinytests src/tinyprintf.o tests/tests.c $(LDLIBS)
	./tinytests

src/tinyprintf.o: src/tinyprintf.c
	$(CC) $(CFLAGS) -c -o src/tinyprintf.o src/tinyprintf.c

.PHONY: clean

clean:
	rm src/tinyprintf.o tinytests