已存档
1
0
该仓库已被归档。您可以查看文件和克隆它,但不能推送、创建工单或合并请求。
controller/Lib/CMake/writer
Jacob Alexander 5df7b55391 Adding compiler change detection.
- Tried to add auto cmake reset...so far unsuccessful
- Ported MBC-55X (was used to test compilers)
- Disabled in-source builds, to prevent CMake from shooting itself in the foot.
2014-04-19 01:51:25 -07:00

11 行
179 B
Bash
可执行文件

#!/bin/bash
#| Jacob Alexander 2014
#| Arg List
#| 1 - File to write to (e.g. final_chip)
#| 2 - Contents writing to file (e.g. at90usb1286)
printf "$2" > "$1"
exit $?