Initial checkin of Pika from heckimp

This commit is contained in:
2023-09-25 15:35:21 -07:00
commit 891e999216
6761 changed files with 5240685 additions and 0 deletions

29
meson.make Normal file
View File

@ -0,0 +1,29 @@
#!/usr/bin/env -S make -f
default: build
# This file is executable so you can do
# ./meson.make
# ./meson.make install
prefix = /usr
prefix = $(HOME)/.local
_build:
meson _build --prefix=$(prefix)
.PHONY: build
build: | _build
meson compile -C _build
.PHONY: install
install:
meson install -C _build
.PHONY: clean
clean:
rm -rf _build