Files
fnx_web/Makefile

11 lines
200 B
Makefile
Raw Permalink Normal View History

2019-01-12 23:21:50 +01:00
run:
2021-11-02 10:16:25 +01:00
${MAKE} -j2 backgroundrun backgroundsvelte
2018-01-16 17:07:42 +01:00
build:
2021-11-02 10:16:25 +01:00
cd svelte && npm run build
go build main.go -o web
2018-01-16 11:47:48 +01:00
2018-01-16 17:07:42 +01:00
backgroundrun:
go run main.go
2021-11-02 10:16:25 +01:00
backgroundsvelte:
2021-11-02 18:39:32 +01:00
cd svelte && npm install && npm run dev