aboutsummaryrefslogtreecommitdiff
path: root/7.6/Makefile
blob: b428b039f3040efabdad56a410e09608c5fd4706 (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

scan : $(OBJECTS)
	$(CC) $(CFLAGS) -o comp $(OBJECTS)

.PHONY : clean

clean :
	rm -f comp