1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-12-12 05:20:26 +00:00
mycorrhiza/Makefile
Umar Getagazov e2f228a732 Allow changing the wiki path for make
For example, bouncepaw uses ~/src, I use ~/Code and ~/sources. Many
other people use different prefixes.
2021-10-26 12:45:28 +07:00

20 lines
234 B
Makefile

.POSIX:
include config.example.mk
include config.mk
run: build
./mycorrhiza ${WIKIPATH}
config_run: build
./mycorrhiza ${WIKIPATH}
devconfig_run: build
./mycorrhiza ${WIKIPATH}
build:
go generate
go build .
test:
go test .