|
|
| File: [Development] / linux-2.6-xfs / arch / sh / ramdisk / Attic / Makefile (download)
Revision 1.1, Mon Aug 16 03:52:41 2004 UTC (13 years, 2 months ago) by nathans
Merge up to 2.6.8.1 |
# # Makefile for a ramdisk image # obj-y += ramdisk.o O_FORMAT = $(shell $(OBJDUMP) -i | head -n 2 | grep elf32) img := $(subst ",,$(CONFIG_EMBEDDED_RAMDISK_IMAGE)) # add $(src) when $(img) is relative img := $(subst $(src)//,/,$(src)/$(img)) quiet_cmd_ramdisk = LD $@ define cmd_ramdisk $(LD) -T $(src)/ld.script -b binary --oformat $(O_FORMAT) -o $@ $(img) endef $(obj)/ramdisk.o: $(img) $(src)/ld.script $(call cmd,ramdisk)