summaryrefslogtreecommitdiff
path: root/graphs/piscine/heap/Makefile
blob: 2ed972be2d7b7f682bcd4b7e0d53e64c25fc332f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CC = gcc
CFLAGS = -Wall -Werror -Wvla -Wextra -std=c99 -pedantic
SRC = add.c del.c print.c pop.c create.c
OBJ = $(SRC:.c=.o)

.PHONY: library clean

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

$(OBJ): $(SRC)

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