mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
4499f98e76
You now have some ability to truly make an executable yours, by adding a `.args` file to the root of the zip structure. If this is specified, then you'll be overriding the default CLI args. This will be a great feature for folks who want to distribute their own apps, using the interpreter executable, but have the executable appears to be just your app rather than being the interpreter.
13 lines
431 B
Makefile
13 lines
431 B
Makefile
#-*-mode:makefile-gmake;indent-tabs-mode:t;tab-width:8;coding:utf-8-*-┐
|
|
#───vi: set et ft=make ts=8 tw=8 fenc=utf-8 :vi───────────────────────┘
|
|
|
|
.PHONY: o/$(MODE)/tool
|
|
o/$(MODE)/tool: \
|
|
o/$(MODE)/tool/args \
|
|
o/$(MODE)/tool/build \
|
|
o/$(MODE)/tool/decode \
|
|
o/$(MODE)/tool/hash \
|
|
o/$(MODE)/tool/lambda \
|
|
o/$(MODE)/tool/plinko \
|
|
o/$(MODE)/tool/net \
|
|
o/$(MODE)/tool/viz
|