mirror of
https://github.com/chirpstack/chirpstack.git
synced 2024-12-19 05:07:54 +00:00
12 lines
194 B
Makefile
12 lines
194 B
Makefile
|
.PHONY: requirements
|
||
|
|
||
|
all: requirements install clean-after
|
||
|
|
||
|
requirements:
|
||
|
rm -rf Chirpstack
|
||
|
dotnet clean
|
||
|
install:
|
||
|
dotnet build -c Release -o /app/build
|
||
|
clean-after:
|
||
|
rm -rf obj
|
||
|
rm -rf bin
|