aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJoe <rbo@gmx.us>2023-12-14 20:20:20 +0100
committerJoe <rbo@gmx.us>2023-12-14 20:20:20 +0100
commit34921eae2dac9f320c446c81991d2e3fe538923c (patch)
tree9a3f049fa0fe7aacbcd847967011ea36cd6ae397 /Makefile
parentdates (diff)
downloadhardflip-34921eae2dac9f320c446c81991d2e3fe538923c.tar.gz
hardflip-34921eae2dac9f320c446c81991d2e3fe538923c.tar.bz2
hardflip-34921eae2dac9f320c446c81991d2e3fe538923c.tar.xz
hardflip-34921eae2dac9f320c446c81991d2e3fe538923c.tar.zst
hardflip-34921eae2dac9f320c446c81991d2e3fe538923c.zip
up
Diffstat (limited to '')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 4560bb8..dbcdd1e 100644
--- a/Makefile
+++ b/Makefile
@@ -18,11 +18,12 @@
.DEFAULT_GOAL := run
SHELL := /bin/sh
+SRC := *.go
-run:
- @go run *.go
+run: ${SRC}
+ @go run ${SRC}
-all:
+josh: ${SRC}
@go build
clean: