ncurses-gameoflife/makefile

5 lines
57 B
Makefile
Raw Normal View History

2020-06-12 09:46:44 +08:00
LDFLAGS=-lncurses
2020-06-23 09:34:29 +08:00
main: *.c
gcc *.c -o main ${LDFLAGS}