summaryrefslogtreecommitdiffstats
path: root/Bachelor/Mikroprozessorsysteme2/mi2/Termin3/makefile1
blob: 6308804f7b4e483c7db7d1baab17760decf6a1a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FILE = Termin3Aufgabe3
Opti = 1

all:
	arm-elf-gcc -c -g -O1 ../boot/swi.S
	arm-elf-gcc -c -g -O1 ../boot/boot.s
	arm-elf-gcc -c -g -O1 $(FILE).c
	arm-elf-gcc -S $(FILE).c
	arm-elf-ld -Ttext 0x2000000 swi.o boot.o $(FILE).o -o $(FILE).elf

clean:
	rm -f *.o
	rm *.elf