aboutsummaryrefslogtreecommitdiff
path: root/7.7/Makefile
blob: 6de9d254332c8d97cd047aa7ef59fae93180b146 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
OBJECTS = main.c
CC = gcc
CFLAGS = -Wvla -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -fsanitize=address

find : $(OBJECTS)
	$(CC) $(CFLAGS) -o find $(OBJECTS)

.PHONY : clean

clean :
	rm -f find