ncurses-gameoflife/makefile
2020-07-03 23:05:26 +01:00

8 lines
68 B
Makefile

LDFLAGS=-lncurses
CC=gcc
main: *.c
$(CC) *.c -o main ${LDFLAGS}