view Lib/CMake/writer @ 149:c127188dcc80

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.
author Jacob Alexander <haata@kiibohd.com>
date Sat, 19 Apr 2014 01:51:25 -0700
parents
children 99f93dec8fea
line wrap: on
line source

#!/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 $?