File: Makefile

package info (click to toggle)
zsv 1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 49,160 kB
  • sloc: ansic: 175,811; cpp: 56,301; sh: 3,623; makefile: 3,048; javascript: 577; cs: 90; awk: 70; python: 41; sql: 15
file content (16 lines) | stat: -rw-r--r-- 443 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

.PHONY: publish-osx publish-win help clean

help:
	@echo "make publish-win|publish-osx|clean"

publish-win:
	dotnet publish -c Release -r win-x64 --self-contained true -o ./publish/win-x64
	@echo "Remember to copy libzsv.dll into ./publish/win-x64"

publish-osx:
	dotnet publish -c Release -r osx-arm64 --self-contained true -o ./publish/osx-arm64
	@echo "Remember to copy libzsv.dylib into ./publish/win-x64"

clean:
	rm -rf obj bin publish