This repository has been archived on 2024-03-07. You can view files and clone it, but cannot push or open issues/pull-requests.
garklang/Makefile

15 lines
193 B
Makefile

.PHONY: build tests install
build:
cmake -B build
cmake --build build
tests: build
build/gark-tests
install: tests
sudo cmake --install build
force-install:
sudo cmake --install build