aboutsummaryrefslogtreecommitdiff
path: root/7.3/Makefile
blob: 434eecd5c89db475ad5bdff4eaf97f40ab2ae1c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
objects = main.o mprintf.o
CC = gcc
CFLAGS = -Wvla -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -fsanitize=address

print : $(objects)
	$(CC) $(CFLAGS) -o print $(objects) -lm

main.o : mprintf.h

.PHONY : clean
clean :
	rm print $(objects)