aboutsummaryrefslogblamecommitdiff
path: root/8.3/Makefile
blob: fb8a9bbd29969f76ef98f0ef86bfa286b964e2a3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                                        
OBJECTS = main.o stdio.o
CC = gcc
CFLAGS = -Wvla -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -fsanitize=address

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

main.o : stdio.h

.PHONY : clean
clean :
	rm -f sneed $(OBJECTS)