mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-29 11:44:30 +01:00
* chore (dockerfile): cleanup dockerfile * feature (plugin): extend plugin interface * chore (docker): setup new Dockerfile * chore (dockerfile): update dockerfile
15 lines
256 B
Makefile
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
|