mirror of
https://github.com/PoetryInCode/matrix.git
synced 2025-04-20 18:27:14 -04:00
17 lines
205 B
Makefile
17 lines
205 B
Makefile
all: build
|
|
|
|
CFLAGS=-lncurses
|
|
|
|
install: build ;
|
|
cp -u $(FINBIN) /usr/local/bin/
|
|
|
|
build: ./matrix
|
|
|
|
./matrix: ./matrix.c
|
|
|
|
clean:
|
|
rm -f ./matrix
|
|
|
|
run: bin/matrix ;
|
|
./bin/matrix --tickTime 15 --streamLen 20
|