blob: 982c7a230191e72d6ff249b223e3eb80f20bdc5c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
objects = main.o getch.o
CC = gcc
CFLAGS = -Wvla -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -fsanitize=address
fmt : $(objects)
$(CC) $(CFLAGS) -o fmt $(objects)
main.o: getch.h
.PHONY : clean
clean:
rm fmt $(objects)
|