mirror of
git://git.suckless.org/sbase
synced 2025-03-21 18:43:37 +00:00
The Makefile rule was too complex and these cases is better to just move it to a script where will be eassier to use sed properly and not looping over all the files 4 times.
67 lines
994 B
Bash
Executable File
67 lines
994 B
Bash
Executable File
#!/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
|