mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2025-01-05 17:40:26 +00:00
8848a994e5
Also fix Makefile so it includes config.mk iff it exists
20 lines
235 B
Makefile
20 lines
235 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 .
|