/usr/share/expeyes/firmware/compile.sh is in expeyes-firmware-dev 4.3.6+dfsg-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 | echo "compiling $1.c"
avr-gcc -Wall -O2 -mmcu=atmega32 -Wl,-Map,$1.map -o $1 $1.c
avr-objcopy -j .text -j .data -O ihex $1 $1.hex
avr-objdump -S $1 > $1.lst
rm -rf *.lst *.map
|