12 lines
100 B
Makefile
12 lines
100 B
Makefile
|
|
||
|
all: build
|
||
|
|
||
|
build:
|
||
|
crystal src/pushokku.cr -o pushokku
|
||
|
|
||
|
test:
|
||
|
|
||
|
run:
|
||
|
crystal run src/pushokku.cr
|
||
|
|