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

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

.PHONY : clean

clean :
	rm -f scan $(OBJECTS)