SynicalBot/Makefile

25 lines
662 B
Makefile
Raw Permalink Normal View History

2021-12-19 02:23:02 +01:00
clean:
# Removes the build directory
rm -rf build
update:
# Updates the package.json file
ppm --generate-package="botsrc"
build:
# Compiles the package
mkdir build
ppm --compile="botsrc" --directory="build"
install:
# Installs the compiled package to the system
2021-12-28 17:34:00 +01:00
ppm --fix-conflict --no-prompt --install="build/net.intellivoid.synical_bot.ppm" --branch="master"
2021-12-19 02:23:02 +01:00
install_fast:
# Installs the compiled package to the system
2021-12-28 17:34:00 +01:00
ppm --fix-conflict --no-prompt --skip-dependencies --install="build/net.intellivoid.synical_bot.ppm" --branch="master"
2021-12-19 02:23:02 +01:00
run:
# Runs the bot
2021-12-28 17:34:00 +01:00
ppm --main="net.intellivoid.synical_bot" --version="latest"