12 lines
157 B
Makefile
12 lines
157 B
Makefile
######################
|
|
# Makefile for QRank #
|
|
######################
|
|
|
|
# Main target
|
|
run:
|
|
go run ./src
|
|
|
|
# Nix stuff
|
|
nix-run:
|
|
nix develop --command make run
|