8 lines
68 B
Makefile
8 lines
68 B
Makefile
LDFLAGS=-lncurses
|
|
CC=gcc
|
|
|
|
|
|
main: *.c
|
|
$(CC) *.c -o main ${LDFLAGS}
|
|
|