mirror of
https://github.com/oliverschmidt/contiki.git
synced 2025-01-21 08:30:35 +00:00
6 lines
226 B
Plaintext
6 lines
226 B
Plaintext
|
#!/bin/sh
|
||
|
echo "#include \"symbols.h\"" > symbols.c
|
||
|
echo "const struct symbols symbols[] = {{0,0}};" >> symbols.c
|
||
|
echo "#include \"loader/symbols-def.h\"" > symbols.h
|
||
|
echo "extern const struct symbols symbols[1];">> symbols.h
|