mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-02-07 03:09:13 +00:00
12 lines
194 B
Makefile
Vendored
12 lines
194 B
Makefile
Vendored
.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
|