blob: bcea41698ef5e15e555e2cfeb5d9ecf16b758ed5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#
# Makefile for the DECstation family specific parts of the kernel
#
netboot: all
$(LD) -N -G 0 -T ld.ecoff ../../boot/zImage \
dec_boot.o ramdisk.img -o nbImage
obj-y := decstation.o
clean:
rm -f nbImage
|