2006-02-15 12:18:21 +01:00
|
|
|
# Makefile for ramdisk image
|
|
|
|
|
|
|
|
PROGRAMS=at_wini bios_wini cdprobe dev2name floppy loadramdisk newroot \
|
2006-10-25 15:40:36 +02:00
|
|
|
pci sh service sysenv mfs
|
2009-12-17 02:53:26 +01:00
|
|
|
EXTRA=system.conf passwd
|
2006-02-15 12:18:21 +01:00
|
|
|
|
2006-04-03 17:01:43 +02:00
|
|
|
MAKEDEV=/usr/bin/MAKEDEV
|
|
|
|
|
2010-03-22 22:25:22 +01:00
|
|
|
all: image.c
|
2006-02-15 12:18:21 +01:00
|
|
|
|
|
|
|
clean:
|
2010-03-22 22:25:22 +01:00
|
|
|
rm -rf $(PROGRAMS) $(EXTRA) bintoc image image.c t proto.gen
|
2006-02-15 12:18:21 +01:00
|
|
|
|
|
|
|
image.c: bintoc image
|
|
|
|
./bintoc -o $@ image
|
|
|
|
|
|
|
|
# Note for cross compilation: this executable has to be compiled for the
|
|
|
|
# host system
|
|
|
|
bintoc: bintoc.c
|
|
|
|
$(CC) -o $@ bintoc.c
|
|
|
|
|
2006-10-31 14:35:04 +01:00
|
|
|
image: proto.gen mtab rc $(PROGRAMS) $(EXTRA)
|
2007-02-08 14:51:35 +01:00
|
|
|
mkfs image proto.gen || { rm -f image; false; }
|
2006-02-15 12:18:21 +01:00
|
|
|
|
|
|
|
at_wini: ../../at_wini/at_wini
|
|
|
|
install -s ../../$@/$@ $@
|
|
|
|
|
|
|
|
../../at_wini/at_wini:
|
|
|
|
cd ../../at_wini && make
|
|
|
|
|
|
|
|
bios_wini: ../../bios_wini/bios_wini
|
|
|
|
install -s ../../$@/$@ $@
|
|
|
|
|
|
|
|
../../bios_wini/bios_wini:
|
|
|
|
cd ../../bios_wini && make
|
|
|
|
|
|
|
|
floppy: ../../floppy/floppy
|
|
|
|
install -s ../../$@/$@ $@
|
|
|
|
|
|
|
|
../../floppy/floppy:
|
|
|
|
cd ../../floppy && make
|
|
|
|
|
2006-02-15 15:21:56 +01:00
|
|
|
pci: ../../pci/pci
|
|
|
|
install -s ../../$@/$@ $@
|
|
|
|
|
|
|
|
../../pci/pci:
|
|
|
|
cd ../../pci && make
|
|
|
|
|
2010-05-12 18:28:54 +02:00
|
|
|
cdprobe: ../../../commands/cdprobe/cdprobe
|
|
|
|
install -s ../../../commands/$@/$@ $@
|
2006-02-15 12:18:21 +01:00
|
|
|
|
2010-05-12 18:28:54 +02:00
|
|
|
../../../commands/cdprobe:
|
|
|
|
cd ../../../commands/cdprobe && make
|
2006-02-15 12:18:21 +01:00
|
|
|
|
2010-05-12 18:28:54 +02:00
|
|
|
dev2name: ../../../commands/dev2name/dev2name
|
|
|
|
install -s ../../../commands/$@/$@ $@
|
2006-02-15 12:18:21 +01:00
|
|
|
|
2010-05-12 18:28:54 +02:00
|
|
|
../../../commands/dev2name/dev2name:
|
|
|
|
cd ../../../commands/dev2name && make
|
2006-02-15 12:18:21 +01:00
|
|
|
|
2010-05-12 18:28:54 +02:00
|
|
|
loadramdisk: ../../../commands/loadramdisk/loadramdisk
|
|
|
|
install -s ../../../commands/$@/$@ $@
|
2006-02-15 12:18:21 +01:00
|
|
|
|
2010-05-12 18:28:54 +02:00
|
|
|
../../../commands/loadramdisk/loadramdisk:
|
|
|
|
cd ../../../commands/loadramdisk && make
|
2006-02-15 12:18:21 +01:00
|
|
|
|
2010-05-12 18:28:54 +02:00
|
|
|
newroot: ../../../commands/newroot/newroot
|
|
|
|
install -s ../../../commands/$@/$@ $@
|
2006-02-15 12:18:21 +01:00
|
|
|
|
2010-05-12 18:28:54 +02:00
|
|
|
../../../commands/newroot/newroot:
|
|
|
|
cd ../../../commands/newroot && make
|
2006-02-15 12:18:21 +01:00
|
|
|
|
2010-05-12 18:28:54 +02:00
|
|
|
sysenv: ../../../commands/sysenv/sysenv
|
|
|
|
install -s ../../../commands/$@/$@ $@
|
2006-02-15 12:18:21 +01:00
|
|
|
|
2010-05-12 18:28:54 +02:00
|
|
|
../../../commands/sysenv:
|
|
|
|
cd ../../../commands/sysenv && make
|
2006-02-15 12:18:21 +01:00
|
|
|
|
|
|
|
sh: ../../../commands/ash/sh
|
|
|
|
install -s ../../../commands/ash/$@ $@
|
|
|
|
|
|
|
|
../../../commands/ash/sh:
|
|
|
|
cd ../../../commands/ash && make sh
|
|
|
|
|
2010-03-22 22:25:22 +01:00
|
|
|
service: ../../../servers/rs/service/service
|
|
|
|
install -s ../../../servers/rs/service/$@ $@
|
2006-02-15 12:18:21 +01:00
|
|
|
|
|
|
|
../../../servers/rs/service:
|
|
|
|
cd ../../../servers/rs && make service
|
|
|
|
|
2006-10-25 15:40:36 +02:00
|
|
|
mfs: ../../../servers/mfs/mfs
|
|
|
|
install -s ../../../servers/mfs/$@ $@
|
|
|
|
|
|
|
|
../../../servers/mfs/mfs:
|
|
|
|
cd ../../../servers/mfs && make
|
|
|
|
|
2009-12-17 02:53:26 +01:00
|
|
|
system.conf: ../../../etc/system.conf
|
2006-10-31 14:35:04 +01:00
|
|
|
install -s ../../../etc/$@ $@
|
|
|
|
|
|
|
|
passwd: ../../../etc/passwd
|
|
|
|
install -s ../../../etc/$@ $@
|
|
|
|
|
2006-04-03 17:01:43 +02:00
|
|
|
proto.gen: $(MAKEDEV) proto.sh proto
|
2006-04-03 20:47:28 +02:00
|
|
|
sh -e proto.sh >proto.gen
|
2006-04-03 17:01:43 +02:00
|
|
|
|
2010-03-22 22:25:22 +01:00
|
|
|
.include <minix.prog.mk>
|