Initial Commit

This commit is contained in:
Zi Xing 2021-12-09 12:37:57 -05:00
commit 7d47bc7564
4 changed files with 22 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
build/

1
.ppm_package Normal file
View File

@ -0,0 +1 @@
src/ssm

12
Makefile Normal file
View File

@ -0,0 +1,12 @@
clean:
rm -rf build
update:
ppm --generate-package="src/ssm"
build:
mkdir build
ppm --no-intro --compile="src/ssm" --directory="build"
install:
ppm --no-intro --no-prompt --fix-conflict --install="build/net.intellivoid.ssm.ppm"

8
src/ssm/ssm.php Normal file
View File

@ -0,0 +1,8 @@
<?php
namespace ssm;
class ssm
{
}