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

all: sieve.o

sieve.o: sieve.c
	$(CC) $(CFLAGS) -c -o sieve.o sieve.c

.PHONY: clean

clean:
	rm sieve.o