summaryrefslogtreecommitdiff
path: root/releasetools/Makefile
blob: 7b4bed4fb7d6d670925d1fee8a72eebedeff1b8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# Makefile for the kernel image.
.include <bsd.own.mk>

GEN_FILES=	*.bak image kernel *.iso *.iso.gz cdfdimage rootimage src

# LSC detect where were built the objects files
PROGROOT:= ..
.if "${MAKEOBJDIR:S,${.CURDIR},,}" != ""
PROGROOT:= ${MAKEOBJDIR:S,releasetools,,}
.endif

# Specify the programs that are part of the system image.
KERNEL= ${PROGROOT}/minix/kernel/kernel

# PROGRAMS are in the order they should be loaded by boot
PROGRAMS+= ${PROGROOT}/minix/servers/ds/ds
PROGRAMS+= ${PROGROOT}/minix/servers/rs/rs
PROGRAMS+= ${PROGROOT}/minix/servers/pm/pm
PROGRAMS+= ${PROGROOT}/minix/servers/sched/sched
PROGRAMS+= ${PROGROOT}/minix/servers/vfs/vfs
PROGRAMS+= ${PROGROOT}/minix/drivers/storage/memory/memory
PROGRAMS+= ${PROGROOT}/minix/drivers/tty/tty/tty
PROGRAMS+= ${PROGROOT}/minix/servers/mib/mib
PROGRAMS+= ${PROGROOT}/minix/servers/vm/vm
PROGRAMS+= ${PROGROOT}/minix/fs/pfs/pfs
PROGRAMS+= ${PROGROOT}/minix/fs/mfs/mfs
PROGRAMS+= ${PROGROOT}/sbin/init/init

all usage help:
	@echo " " >&2
	@echo "Master Makefile to create new MINIX configuration." >&2
	@echo "Root privileges are required." >&2
	@echo " " >&2
	@echo "Usage:" >&2
	@echo "	make includes   # Install include files" >&2
	@echo "	make depend     # Generate dependency files" >&2
	@echo "	make services   # Compile and install all services" >&2
	@echo "	make hdboot     # Make image, and install to hard disk" >&2
	@echo "	make clean      # Remove all compiler results" >&2
	@echo " " >&2
	@echo "To create a fresh MINIX configuration, try:" >&2
	@echo "	make clean install      # new boot image" >&2
	@echo " " >&2

.gitignore: Makefile
	echo ${GEN_FILES} | tr ' ' '\n' >.gitignore

includes:
	${MAKE} -C ${NETBSDSRCDIR} includes

depend: includes .gitignore
	${MAKE} -C ${NETBSDSRCDIR} depend

libraries: includes
	${MAKE} -C ${NETBSDSRCDIR} do-lib

kernel: libraries
	${MAKE} -C ${NETBSDSRCDIR}/minix/kernel

servers: libraries
	${MAKE} -C ${NETBSDSRCDIR}/minix/fs all install
	${MAKE} -C ${NETBSDSRCDIR}/minix/net all install
	${MAKE} -C ${NETBSDSRCDIR}/minix/servers all install

sbin: libraries
	${MAKE} -C ${NETBSDSRCDIR}/sbin all install
	${MAKE} -C ${NETBSDSRCDIR}/minix/sbin all install

drivers: libraries
	${MAKE} -C ${NETBSDSRCDIR}/minix/drivers all install

services: kernel servers drivers sbin

do-hdboot: 
	@rm -rf ${DESTDIR}/boot/minix/.temp/
	${INSTALL_DIR} ${DESTDIR}/boot/minix/.temp
# mod_0 is used to make alphabetical order equal to the boot order
	@n=0;							\
	for i in ${PROGRAMS};					\
	do							\
	n=`expr $$n + 1`;					\
	[ "$$n" -ge 10 ] && prefix="mod" || prefix="mod0";	\
	newname="${DESTDIR}/boot/minix/.temp/$${prefix}$${n}_`basename $$i`"; \
	${INSTALL_FILE} $$i $$newname;				\
	echo ${INSTALL_FILE} $$i $$newname;			\
	done
	@${INSTALL_FILE} ${KERNEL} ${DESTDIR}/boot/minix/.temp/
	@if [ "${MKINSTALLBOOT:Uno}" != "no" ] ; then		\
	${STRIP} -s ${DESTDIR}/boot/minix/.temp/* ;		\
	gzip ${DESTDIR}/boot/minix/.temp/mod* ;			\
	${HOST_SH} mkboot hdboot ${DESTDIR};			\
	${HOST_SH} ../minix/commands/update_bootcfg/update_bootcfg.sh;\
	fi

hdboot: services .WAIT do-hdboot

clean:
	${MAKE} -C ${NETBSDSRCDIR}/lib $@
	${MAKE} -C ${NETBSDSRCDIR}/minix/kernel $@
	${MAKE} -C ${NETBSDSRCDIR}/minix/fs $@
	${MAKE} -C ${NETBSDSRCDIR}/minix/net $@
	${MAKE} -C ${NETBSDSRCDIR}/minix/servers $@
	${MAKE} -C ${NETBSDSRCDIR}/minix/drivers $@
	${MAKE} -C ${NETBSDSRCDIR}/sbin $@
	${MAKE} -C ${NETBSDSRCDIR}/minix/sbin $@
	rm -rf ${GEN_FILES}

# LSC: For STRIP and HOST_SH
.include <bsd.sys.mk>