mirror of
https://github.com/Stichting-MINIX-Research-Foundation/xsrc.git
synced 2025-09-16 16:15:10 -04:00
12 lines
246 B
Bash
Executable File
12 lines
246 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cat $* | awk 'BEGIN { \
|
|
printf "/*\n * This file is generated from %s. Do not edit.\n */\n", \
|
|
"$(INCLUDESRC)/keysymdef.h";\
|
|
} \
|
|
/^#define/ { \
|
|
len = length($2)-3; \
|
|
printf("{ \"%s\", %s },\n", substr($2,4,len), $3); \
|
|
}'
|
|
|