aboutsummaryrefslogblamecommitdiff
path: root/7.8/Makefile
blob: 98452fc0234345e05cb4a9e4d8dcaad6f9a54931 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












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

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

main.o : fileprint.h

.PHONY : clean

clean :
	rm -f print $(OBJECTS)