[BACK]Return to Makefile CVS log [TXT][DIR] Up to [Development] / linux-2.6-xfs / arch / mips / hp-lj

File: [Development] / linux-2.6-xfs / arch / mips / hp-lj / Attic / Makefile (download)

Revision 1.1, Tue Dec 30 23:58:53 2003 UTC (13 years, 9 months ago) by cattelan
Branch: MAIN

Initial Import 2.6.0

#
# Makefile for the HP specific kernel interface routines
# under Linux.
#

obj-y   := init.o setup.o irq.o int-handler.o utils.o asic.o

obj-$(CONFIG_KGDB) += gdb_hook.o
obj-$(CONFIG_DIRECT_PRINTK) += gdb_hook.o

obj-$(CONFIG_BLK_DEV_INITRD) += initrd.o

forceit:

# package filesystem from rootfs directory into binary package
romfs.bin: forceit ./rootfs
	@genromfs -d ./rootfs -f $@

# transform rootfs.bin into object file format for linking
initrd.o: romfs.bin
	@echo "" | $(CROSS_COMPILE)as -o $@
	@$(CROSS_COMPILE)objcopy --add-section .initrd=$< $@

EXTRA_AFLAGS := $(CFLAGS)

.PHONY: forceit