EMILE/Makefile

131 lines
3.8 KiB
Makefile
Raw Normal View History

2004-02-15 20:46:45 +00:00
#
# (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
#
#
PACKAGE = emile
2004-10-07 19:54:38 +00:00
VERSION = 0.7CVS
2004-06-09 21:34:13 +00:00
# kernel boot arguments
RAMDISK=$(shell ls ramdisk.gz 2> /dev/null)
ifeq ($(RAMDISK),ramdisk.gz)
#KERNEL_ARGS="root=/dev/ramdisk ramdisk_size=2048"
KERNEL_ARGS="root=/dev/ramdisk ramdisk_size=2048 console=ttyS0,9600n8 console=tty0"
2004-06-09 21:34:13 +00:00
else
# NFS boot
#KERNEL_ARGS="root=/dev/nfs ip=dhcp nfsroot=192.168.100.1:/nfsroot rw"
# SCSI boot
KERNEL_ARGS="root=/dev/sda3"
2004-10-07 19:54:38 +00:00
#KERNEL_ARGS="prompt_ramdisk=1 load_ramdisk=1 ramdisk_start=0 root=/dev/fd0 ramdisk_size=4096"
2004-06-09 21:34:13 +00:00
endif
2004-02-15 20:46:45 +00:00
2004-06-03 11:09:28 +00:00
# build info
WHO = $(shell whoami)
WHERE = $(shell hostname)
WHEN = $(shell LANG=C date)
ARCH = $(shell uname -m -o)
SIGNATURE = $(PACKAGE)-$(VERSION) $(WHO)@$(WHERE)($(ARCH)) $(WHEN)
2004-02-15 20:46:45 +00:00
# tools to use
ifneq ($(shell uname -m),m68k)
CROSS_COMPILE = m68k-linux-
endif
AS=$(CROSS_COMPILE)as
CC=$(CROSS_COMPILE)gcc
LD=$(CROSS_COMPILE)ld
OBJCOPY=$(CROSS_COMPILE)objcopy
# identify architecture of kernel (Motorola 680x0 or PowerPC)
KERNEL=vmlinux
FILE=file -bknL
2004-06-03 09:13:05 +00:00
KERNEL_SIZE=$(shell ls -l vmlinux.bin | awk '{print $$5}')
all: tools first/first second/second_floppy
2004-02-15 20:46:45 +00:00
floppy.img: tools first/first vmlinuz second/second_floppy $(RAMDISK)
2004-06-02 21:10:19 +00:00
ifeq ($(RAMDISK),ramdisk.gz)
tools/emile-install -f first/first -s second/second_floppy \
-i vmlinuz -b $(KERNEL_SIZE) \
-r $(RAMDISK) \
floppy.img.X
else
tools/emile-install -f first/first -s second/second_floppy \
-i vmlinuz -b $(KERNEL_SIZE) \
floppy.img.X
2004-06-02 21:10:19 +00:00
endif
2004-06-09 21:34:13 +00:00
tools/emile-set-cmdline floppy.img.X $(KERNEL_ARGS)
2004-02-15 20:46:45 +00:00
mv floppy.img.X floppy.img
vmlinux.bin: $(KERNEL)
2004-06-07 18:50:23 +00:00
$(OBJCOPY) -I elf32-big -O binary -R .note -R .comment -S $(KERNEL) vmlinux.bin
2004-02-15 20:46:45 +00:00
vmlinuz: vmlinux.bin
cp vmlinux.bin vmlinuz.out
gzip -9 vmlinuz.out
mv vmlinuz.out.gz vmlinuz
first/first::
2004-06-03 11:09:28 +00:00
$(MAKE) -C first OBJCOPY=$(OBJCOPY) LD=$(LD) CC=$(CC) AS=$(AS) SIGNATURE="$(SIGNATURE)"
2004-02-15 20:46:45 +00:00
second/second_floppy::
2004-02-15 20:46:45 +00:00
$(MAKE) -C second OBJCOPY=$(OBJCOPY) LD=$(LD) CC=$(CC) AS=$(AS) \
2004-06-16 17:22:22 +00:00
VERSION=$(VERSION) SIGNATURE="$(SIGNATURE)"
2004-05-19 00:09:58 +00:00
tools::
2004-06-03 11:09:28 +00:00
$(MAKE) -C tools all VERSION=$(VERSION) SIGNATURE="$(SIGNATURE)"
2004-05-19 00:09:58 +00:00
2004-02-15 20:46:45 +00:00
dump: floppy.img
dd if=floppy.img of=/dev/fd0 bs=512
eject /dev/fd0
clean:
2004-05-21 15:06:35 +00:00
$(MAKE) -C tools clean
2004-02-15 20:46:45 +00:00
$(MAKE) -C first clean
$(MAKE) -C second clean
rm -f floppy.img floppy.img.X vmlinuz vmlinux.bin
2004-03-04 22:51:23 +00:00
DISTFILES = second/head.S second/MMU030.c second/MMU040.c second/main.c \
second/MMU030.h second/MMU040.h second/console.c \
second/Makefile second/console.h second/printf.c \
second/MMU030_asm.S second/MMU040_asm.S second/uncompress.h \
second/font_8x16.c second/ld.script second/memory.c \
second/inflate.c second/uncompress.c second/misc.c \
second/bootinfo.h second/misc.h second/lowmem.h \
second/bootinfo.c second/glue.h second/memory.h \
second/glue.S second/enter_kernel030.S \
second/load.h second/load.c \
2004-03-04 22:51:23 +00:00
second/enter_kernel040.S first/first.S \
first/Makefile second/bank.c second/bank.h second/arch.h \
2004-05-19 00:09:58 +00:00
second/arch.c Makefile COPYING README AUTHORS ChangeLog \
2004-06-01 22:08:15 +00:00
tools/Makefile tools/emile-first.h tools/emile-second.h \
tools/emile-set-cmdline.c tools/emile-first-info.c \
tools/emile-first-tune.c tools/emile.h \
2004-06-21 22:47:34 +00:00
tools/emile-install.c second/copymem.i second/serial.c \
second/serial.h second/vga.h second/vga.c second/head.h \
tools/emile-set-output.c second/scsi.c second/scsi.h \
2004-12-03 00:37:23 +00:00
second/container.S tools/blocks.c tools/emile.c \
tools/blocks.h
2004-02-15 20:46:45 +00:00
dist:
rm -fr $(PACKAGE)-$(VERSION)
mkdir $(PACKAGE)-$(VERSION)
for file in $(DISTFILES); do \
dir=$$(dirname $$file); \
if [ "$$dir" != "" ] ; then \
mkdir -p $(PACKAGE)-$(VERSION)/$$dir; \
fi; \
cp -p $$file $(PACKAGE)-$(VERSION)/$$file; \
done
rm -f $(PACKAGE)-$(VERSION).tar $(PACKAGE)-$(VERSION).tar.bz2
tar cvf $(PACKAGE)-$(VERSION).tar $(PACKAGE)-$(VERSION)
bzip2 -9 $(PACKAGE)-$(VERSION).tar
rm -fr $(PACKAGE)-$(VERSION)