mirror of
https://git.lain.church/bake/bake.git
synced 2025-05-16 16:46:44 +00:00
7 lines
163 B
Bash
Executable File
7 lines
163 B
Bash
Executable File
#!/bin/sh
|
|
#EXEC:
|
|
SUDO=${SUDO:-sudo}
|
|
cc baked.c -o baked -pipe -O2 -Wall -Wextra -Wpedantic -Wshadow -Wundef
|
|
$SUDO install -m 755 baked /usr/local/bin
|
|
#:STOP
|