|
|
| File: [Development] / linux-2.6-xfs / arch / sh / ramdisk / Attic / Makefile (download)
Revision 1.2, Wed Jan 5 14:17:31 2005 UTC (12 years, 9 months ago) by nathans.longdrop.melbourne.sgi.com
Merge up to 2.6.10. Merge of 2.6.x-xfs-melb:linux:21010a by kenmcd. |
# # 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 $(srctree)/$(src)/ld.script -b binary --oformat $(O_FORMAT) \ -o $@ $(img) endef $(obj)/ramdisk.o: $(img) $(srctree)/$(src)/ld.script $(call cmd,ramdisk)