8 lines
112 B
Makefile
8 lines
112 B
Makefile
|
|
led:led.s
|
|
arm-linux-gnueabihf-gcc -c -nostdlib led.s
|
|
arm-linux-gnueabihf-gcc -o led led.o
|
|
|
|
clean:
|
|
rm -f *.o
|