diff options
author | Joe <rbo@gmx.us> | 2023-12-14 20:20:20 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2023-12-14 20:20:20 +0100 |
commit | 34921eae2dac9f320c446c81991d2e3fe538923c (patch) | |
tree | 9a3f049fa0fe7aacbcd847967011ea36cd6ae397 /Makefile | |
parent | dates (diff) | |
download | hardflip-34921eae2dac9f320c446c81991d2e3fe538923c.tar.gz hardflip-34921eae2dac9f320c446c81991d2e3fe538923c.tar.bz2 hardflip-34921eae2dac9f320c446c81991d2e3fe538923c.tar.xz hardflip-34921eae2dac9f320c446c81991d2e3fe538923c.tar.zst hardflip-34921eae2dac9f320c446c81991d2e3fe538923c.zip |
up
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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: |