2023-09-27 01:28:54 -04:00
|
|
|
baked, a baking accessory for all your embedded scripts needs.
|
|
|
|
|
|
|
|
Simply embed EXEC: and :STOP into any file and it'll run just fine, example:
|
|
|
|
|
|
|
|
EXEC:shell command ...:STOP
|
|
|
|
|
2023-09-27 01:46:28 -04:00
|
|
|
you may see a real example in the primary and only source file: `baked.c'.
|
|
|
|
this is not targeted toward any language and should be fairly flexible,
|
|
|
|
especially when multi-line comments are available.
|
2023-09-27 01:28:54 -04:00
|
|
|
|
2023-09-28 02:20:48 -04:00
|
|
|
Buildng
|
|
|
|
|
2023-09-27 01:59:13 -04:00
|
|
|
Initial building may be done by examining and running `install.sh',
|
|
|
|
if you don't want to install it right away, run `SUDO= TARGET=. ./install.sh'
|
|
|
|
|
2023-09-28 02:20:48 -04:00
|
|
|
Name/Arg extension
|
2023-09-27 01:28:54 -04:00
|
|
|
|
|
|
|
$@: the name of the executed file
|
|
|
|
$*: the text of the filename before the last dot
|
|
|
|
$+: the remaining arguments to baked
|
|
|
|
|
2023-09-28 02:20:48 -04:00
|
|
|
Options extension
|
|
|
|
|
|
|
|
only one option may be in use at a time, and must come as the first argument.
|
|
|
|
|
|
|
|
-h: displays help message, similiarly to empty input.
|
|
|
|
-n: DRYRUN, does NOT run anything!
|
|
|
|
|
|
|
|
Notes
|
|
|
|
|
2023-09-27 01:28:54 -04:00
|
|
|
baked was inspired by Shake (formerly eMake), written by anon, which
|
|
|
|
you may view at <http://bis64wqhh3louusbd45iyj76kmn4rzw5ysawyan5bkxwyzihj67c5lid.onion/anon/shake>
|
|
|
|
|
|
|
|
Shake compatibility may be enabled with `CFLAGS='-DSHAKE_COMPAT' baked
|
|
|
|
baked.c', the format is `@COMPILECMD ...\n' a functioning example my
|
|
|
|
be found along side the other examples in `baked.c'.
|
|
|
|
|
|
|
|
Baked is licensed under the GPLv3, See LICENSE.
|
2023-09-27 02:05:22 -04:00
|
|
|
|
|
|
|
Baked began on September 13th, 2023.
|