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

SRC = dlist-1.c dlist-2.c dlist-3.c dlist-4.c
OBJ = $(SRC:.c=.o)

.PHONY: library clean

library: $(OBJ)
	ar csr libdlist.a $(OBJ)

clean: $(OBJ)
	$(RM) *.a $(OBJ)

$(OBJ): $(SRC)