filestash/server/plugin/plg_application_dev/Makefile
Mickael d30c3120b6
feature (plugins): expand and migrate plugin - #803
* chore (dockerfile): cleanup dockerfile

* feature (plugin): extend plugin interface

* chore (docker): setup new Dockerfile

* chore (dockerfile): update dockerfile
2025-01-13 15:41:04 +11:00

15 lines
256 B
Makefile

all:
make build
make install
make clean
build:
emcc -O2 -c loader_symbol.c
emcc --no-entry loader_symbol.o -o loader_symbol.wasm
install:
zip -r application_dev.zip .
mv application_dev.zip ../../../dist/data/state/plugins/
clean:
rm *.o *.wasm