6 lines
136 B
Bash
6 lines
136 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
cd ..
|
||
|
python3 parser.py tests/test_keymap_def.json tests/test_keymap.c && \
|
||
|
gcc -g tests/test.c -o tests/test && \
|
||
|
tests/test
|