1. Moved sudoku.lua to the root 2. Create Makefule 3. Add love binaries in `static-binaries` (they are not static yet) 4. Worked on fullscreen mode. (WIP)
15 lines
341 B
Makefile
15 lines
341 B
Makefile
.PHONY: run
|
|
run:
|
|
@love .
|
|
|
|
.PHONY: build
|
|
build:
|
|
@zip -9 -r /tmp/Sudoku.love . -x '*.git*'
|
|
@mkdir -p build
|
|
@mv /tmp/Sudoku.love build
|
|
@cat static-binaries/love-arm64 build/Sudoku.love > build/sudoku-arm64
|
|
@chmod +x build/sudoku-arm64
|
|
@cat static-binaries/love-amd64 build/Sudoku.love > build/sudoku-amd64
|
|
@chmod +x build/sudoku-amd64
|
|
|