Skip to content
Snippets Groups Projects
Commit c269aa49 authored by David Trattnig's avatar David Trattnig
Browse files

feat(make): extend init targets

parent 63ceba18
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,7 @@
help::
@echo "$(APP_NAME) targets:"
@echo " init.app - init application environment"
@echo " init.dev - init development environment"
@echo " lint - verify code style"
@echo " spell - check spelling of text"
......@@ -55,9 +56,14 @@ lint::
spell::
codespell $(wildcard *.md) docs src tests config contrib
init.dev::
sudo apt install -y
codespell
init.app::
cp config/sample.engine-core.ini engine-core.ini
mkdir -p audio/fallback
mkdir -p audio/playlist
mkdir -p audio/source
init.dev:: init.app
sudo apt install -y codespell
test::
(cd tests && liquidsoap engine_test_suite.liq)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment