summaryrefslogtreecommitdiffstats
path: root/arch/mips/baget/Makefile
blob: 6bddfad4bbb2817ec98200a60fdff18eccafe9bf (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# $Id$
#
# Makefile for the Baget specific kernel interface routines
# under Linux.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile...

all: baget.a 

image:	../../../vmlinux
	cp -f $< $@

O_TARGET := baget.a
O_OBJS   := baget.o print.o setup.o time.o irq.o bagetIRQ.o reset.o wbflush.o

ifeq ($(CONFIG_SERIAL),y)
	OX_OBJS += vacserial.o
else
	ifeq ($(CONFIG_SERIAL),m)
		MX_OBJS += vacserial.o
	endif
endif
ifeq ($(CONFIG_VAC_RTC),y)
	OX_OBJS += vacrtc.o
else
	ifeq ($(CONFIG_VAC_RTC),m)
		MX_OBJS += vacrtc.o
	endif
endif

bagetIRQ.o : bagetIRQ.S
	$(CC) $(CFLAGS) -c -o $@ $<


##################### Baget Loader stuff ########################

dummy.c:
	touch $@

image.bin: image
	$(OBJCOPY) -O binary $< $@

ramdisk.bin:
	echo "Dummy ramdisk used. Provide your own if needed !" > $@

dummy.o: dummy.c image.bin ramdisk.bin
	$(CC) $(CFLAGS) -c -o $@ $<
	$(OBJCOPY) --add-section=.vmlinux=image.bin \
                   --add-section=.ramdisk=ramdisk.bin   $@ 

balo.h: image
	$(NM) $< | awk ' \
            BEGIN               { printf "/* DO NOT EDIT THIS FILE */\n" }    \
	    /kernel_entry/      { printf "#define START 0x%s\n", $$1 }        \
            /balo_ramdisk_base/ { printf "#define RAMDISK_BASE 0x%s\n", $$1 } \
	    /balo_ramdisk_size/ { printf "#define RAMDISK_SIZE 0x%s\n", $$1 } \
                       ' > $@
balo.o:   balo.c balo.h
	$(CC) $(CFLAGS) -c $< 

balo_supp.o: balo_supp.S
	$(CC) $(CFLAGS) -c $<

balo:   balo.o dummy.o balo_supp.o print.o
	$(LD) $(LDFLAGS) -T ld.script.balo -o $@ $^ 

clean:
	rm -f balo.o balo.h dummy.o dummy.c hello.o image.bin image balo_supp.o
	rm -f $(O_OBJS) $(O_TARGET)

include $(TOPDIR)/Rules.make