summaryrefslogtreecommitdiff
path: root/Makefile
blob: 8e1f045123ecf61a66daa8ee611f58babd3f84d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
OBJ=bootstub.o spi-uart.o head.o
CFLAGS=-ffreestanding -Wall
#for cross compile
#CFLAGS=-m32 -ffreestanding -Wall

all: bootstub

bootstub:bootstub.bin
	cat bootstub.bin /dev/zero | dd bs=4096 count=1 > $@

bootstub.bin:bootstub.elf
	objcopy -O binary -R .note -R .comment -S $< $@

bootstub.elf:bootstub.lds $(OBJ)
	ld -m elf_i386 -T bootstub.lds $(OBJ) -o $@

bootstub.o:bootstub.c bootstub.h
	gcc $(CFLAGS) -c bootstub.c

spi-uart.o:spi-uart.c spi-uart.h
	gcc $(CFLAGS) -c spi-uart.c

head.o:head.S bootstub.h
	gcc $(CFLAGS) -c head.S

clean:
	rm -rf *.o *.bin *.elf *.bz2 *.rpm

source:bootstub.c head.S VERSION
	git-archive --prefix=bootstub-`head -n 1 VERSION | awk '{print $$1}'`/ --format=tar HEAD | bzip2 -c > bootstub-`head -n 1 VERSION | awk '{print $$1}'`.tar.bz2

rpm:source
	cp bootstub.spec /usr/src/redhat/SPECS/
	cp *.tar.bz2 /usr/src/redhat/SOURCES/
	rpmbuild -ba /usr/src/redhat/SPECS/bootstub.spec
	cp /usr/src/redhat/RPMS/i386/bootstub*.rpm ./
.PHONY: all clean source rpm