mirror of
git://git.suckless.org/sbase
synced 2025-03-22 19:08:17 +00:00
67 lines
994 B
Plaintext
67 lines
994 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
trap "rm -rf build" INT QUIT TERM
|
||
|
|
||
|
rm -rf build
|
||
|
mkdir -p build
|
||
|
|
||
|
cp *.h build
|
||
|
|
||
|
cat > build/sbase-box.c <<EOF
|
||
|
#include <libgen.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#include "util.h"
|
||
|
#include "sbase-box.h"
|
||
|
|
||
|
struct cmd {
|
||
|
char *name;
|
||
|
int (*fn)(int, char **);
|
||
|
} cmds[] = {
|
||
|
{"install", xinstall_main},
|
||
|
{"[", test_main},
|
||
|
$(grep -l ^main *.c |
|
||
|
while read f
|
||
|
do
|
||
|
sed -n '
|
||
|
/^main/ {
|
||
|
s/main/'${f%.c}'_main/
|
||
|
s/-/_/g
|
||
|
w build/'$f'
|
||
|
s/\(^.*\)(.*)/ {"'${f%.c}'", \1},/p
|
||
|
d
|
||
|
}
|
||
|
w 'build/$f $f
|
||
|
done)
|
||
|
{NULL},
|
||
|
};
|
||
|
|
||
|
int
|
||
|
main(int argc, char *argv[])
|
||
|
{
|
||
|
char *s = basename(argv[0]);
|
||
|
struct cmd *bp;
|
||
|
|
||
|
if(!strcmp(s,"sbase-box")) {
|
||
|
argc--; argv++;
|
||
|
s = basename(argv[0]);
|
||
|
}
|
||
|
|
||
|
for (bp = cmds; bp->name; ++bp) {
|
||
|
if (strcmp(bp->name, s) == 0)
|
||
|
return (*bp->fn)(argc, argv);
|
||
|
}
|
||
|
|
||
|
for (bp = cmds; bp->name; ++bp)
|
||
|
printf("%s ", bp->name);
|
||
|
putchar('\n');
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
EOF
|
||
|
|
||
|
sed -n 's/.* \(.*_main\).*/int \1(int, char **);/p'\
|
||
|
build/sbase-box.c > build/sbase-box.h
|