Document internal CodeGenerator interface Move license to a separate license file. Define a public API for calling libacc. Update the "acc" test program to use the public API. Move "main.cpp" and test scripts into the tests subdirectory. Move test data from tests to tests/data Remove stale test data.
9 lines
185 B
Bash
Executable file
9 lines
185 B
Bash
Executable file
#!/bin/sh
|
|
adb remount
|
|
adb shell rm /system/bin/acc
|
|
adb push data/returnval.c /system/bin/returnval.c
|
|
cd ..
|
|
mm -j8
|
|
cd tests
|
|
adb sync
|
|
adb shell /system/bin/acc -S /system/bin/returnval.c
|