Xdg.Directories/GNUmakefile
Sam Therapy 213fe86329
refactor: Put FFI in its own project
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2023-10-25 15:55:52 +02:00

19 lines
398 B
Makefile

DOTNET ?= dotnet
NETVERSION ?= net7.0
.PHONY: publish
publish:
make DOTNET=$(DOTNET) NETVERSION=$(NETVERSION) -C src/Xdg.Directories.FFI publish
.PHONY: install
install: publish
make DOTNET=$(DOTNET) NETVERSION=$(NETVERSION) -C src/Xdg.Directories.FFI install
.PHONY: uninstall
uninstall:
make -C src/Xdg.Directories.FFI uninstall
.PHONY: clean
clean:
make -C src/Xdg.Directories.FFI clean