sm/Makefile

10 lines
126 B
Makefile
Raw Normal View History

2023-09-14 21:36:33 +00:00
CC?=cc
CFLAGS?=-s -Wall -Wextra -pedantic -O0
LDFLAGS?=-lncurses
all:
$(CC) main.c -osm $(CFLAGS) $(LDFLAGS)
clean:
rm sm