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

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

main.o : stdio.h

.PHONY : clean

clean :
	rm -f exe $(OBJECTS)