1
0
Fork 0
forked from glenux/mfm
mfm-demo/Makefile

32 lines
514 B
Makefile
Raw Permalink Normal View History

2023-10-25 14:01:46 +02:00
# SPDX-License-Identifier: GPL-3.0-or-later
#
# SPDX-FileCopyrightText: 2023 Glenn Y. Rolland <glenux@glenux.net>
# Copyright © 2023 Glenn Y. Rolland <glenux@glenux.net>
2023-10-20 11:29:54 +02:00
2024-01-07 19:45:39 +01:00
PREFIX=/usr
2023-10-20 11:29:54 +02:00
all: build
2024-01-07 19:45:39 +01:00
prepare:
shards install
2023-10-20 11:29:54 +02:00
build:
2024-01-15 02:04:25 +01:00
shards build --error-trace -Dpreview_mt
2023-11-24 10:48:55 +01:00
@echo SUCCESS
watch:
watchexec --restart --delay-run 3 -c -e cr make build
2024-01-07 19:45:39 +01:00
spec: test
test:
crystal spec --error-trace
install:
install \
-m 755 \
bin/code-preloader \
$(PREFIX)/bin
.PHONY: spec test build all prepare install