diff options
author | EuAndreh <eu@euandre.org> | 2024-12-10 11:10:30 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-12-10 11:10:30 -0300 |
commit | 29e1a644a888992dd8b1646565d8247597f18565 (patch) | |
tree | dd1de73ce09696149afc37f8b42322ea94b65ec2 /Makefile | |
parent | Build and test existing code as is (diff) | |
download | urubu-29e1a644a888992dd8b1646565d8247597f18565.tar.gz urubu-29e1a644a888992dd8b1646565d8247597f18565.tar.xz |
cmd/: Simplify flag usage
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -107,7 +107,7 @@ $(libs.a): src/$(NAME).go src/version.go $(existing.a): - go tool compile -I . -o $@ -p $* $*/*.go + go tool compile -I . -o $@ -p $* `find $*/*.go | grep -v _test` $(xmains.a): go tool compile -I . -o $@ -p main $*/*.go |