Makefile revision 153455
1#$FreeBSD: head/rescue/rescue/Makefile 153455 2005-12-15 18:29:01Z jhb $
2#	@(#)Makefile	8.1 (Berkeley) 6/2/93
3
4PROG=	rescue
5BINDIR?=/rescue
6
7# Shell scripts need #! line to be edited from /bin/sh to /rescue/sh
8SCRIPTS= nextboot_FIXED
9SCRIPTSNAME_nextboot_FIXED= nextboot
10nextboot_FIXED: ../../sbin/reboot/nextboot.sh
11	sed '1s/\/bin\//\/rescue\//' ${.ALLSRC} > ${.TARGET}
12CLEANFILES+= nextboot_FIXED
13
14SCRIPTS+= dhclient_FIXED
15SCRIPTSNAME_dhclient_FIXED= dhclient-script
16dhclient_FIXED: ../../sbin/dhclient/dhclient-script
17	sed '1s/\/bin\//\/rescue\//' ${.ALLSRC} > ${.TARGET}
18CLEANFILES+= dhclient_FIXED
19
20#################################################################
21#
22# General notes:
23#
24# A number of Make variables are used to generate the crunchgen config file.
25#
26#  CRUNCH_SRCDIRS: lists directories to search for included programs
27#  CRUNCH_PROGS:  lists programs to be included
28#  CRUNCH_LIBS:  libraries to link with
29#  CRUNCH_BUILDOPTS: generic build options to be added to every program
30#
31# Special options can be specified for individual programs
32#  CRUNCH_SRCDIR_$(P): base source directory for program $(P)
33#  CRUNCH_BUILDOPTS_$(P): additional build options for $(P)
34#  CRUNCH_ALIAS_$(P): additional names to be used for $(P)
35#
36# By default, any name appearing in CRUNCH_PROGS or CRUNCH_ALIAS_${P}
37# will be used to generate a hard link to the resulting binary.
38# Specific links can be suppressed by setting
39# CRUNCH_SUPPRESS_LINK_$(NAME) to 1.
40#
41
42# Define Makefile variable RESCUE
43CRUNCH_BUILDOPTS+= -DRESCUE
44# Define compile-time RESCUE symbol when compiling components
45CRUNCH_BUILDOPTS+= CRUNCH_CFLAGS=-DRESCUE
46
47# An experiment that failed: try overriding bsd.lib.mk and bsd.prog.mk
48# rather than incorporating rescue-specific logic into standard files.
49#MAKEFLAGS= -m ${.CURDIR} ${.MAKEFLAGS}
50
51# Hackery:  'librescue' exists merely as a tool for appropriately
52# recompiling specific library entries.  We _know_ they're needed, and
53# regular archive searching creates ugly library ordering problems.
54# Easiest fix: tell the linker to include them into the executable
55# first, so they are guaranteed to override the regular lib entries.
56# Note that if 'librescue' hasn't been compiled, we'll just get the
57# regular lib entries from libc and friends.
58CRUNCH_LIBS+= ${.OBJDIR}/../librescue/*.o
59
60###################################################################
61# Programs from stock /bin
62#
63# WARNING: Changing this list may require adjusting
64# /usr/include/paths.h as well!  You were warned!
65#
66CRUNCH_SRCDIRS+= bin
67CRUNCH_PROGS_bin= cat chflags chio chmod cp date dd df echo 	\
68	 ed expr getfacl hostname kenv kill ln ls mkdir mv pax ps pwd 	\
69	 realpath rm rmdir setfacl sh stty sync test
70CRUNCH_LIBS+= -lcrypt -ledit -lkvm -ll -lm -ltermcap -lutil
71.if !defined(NO_CRYPT) && !defined(NO_OPENSSL)
72CRUNCH_LIBS+= -lcrypto
73.endif
74
75# Additional options for specific programs
76CRUNCH_ALIAS_test= [
77CRUNCH_ALIAS_sh= -sh
78# The -sh alias shouldn't appear in /rescue as a hard link
79CRUNCH_SUPPRESS_LINK_-sh= 1
80CRUNCH_ALIAS_ln= link
81CRUNCH_ALIAS_rm= unlink
82CRUNCH_ALIAS_ed= red
83
84.if !defined(NO_RCMDS)
85CRUNCH_PROGS_bin+= rcp
86.endif
87
88.if !defined(NO_TCSH)
89CRUNCH_PROGS_bin+= csh
90CRUNCH_ALIAS_csh= -csh tcsh -tcsh
91CRUNCH_SUPPRESS_LINK_-csh= 1
92CRUNCH_SUPPRESS_LINK_-tcsh= 1
93.endif
94
95###################################################################
96# Programs from standard /sbin
97#
98# WARNING: Changing this list may require adjusting
99# /usr/include/paths.h as well!  You were warned!
100#
101# Note that mdmfs have their own private 'pathnames.h'
102# headers in addition to the standard 'paths.h' header.
103#
104CRUNCH_SRCDIRS+= sbin
105CRUNCH_PROGS_sbin= atacontrol badsect bsdlabel		\
106	camcontrol ccdconfig clri devfs dmesg dump			\
107	dumpfs dumpon fsck fsck_ffs fsck_msdosfs fsdb		\
108	fsirand gbde ifconfig init 				\
109	kldconfig kldload kldstat kldunload ldconfig 			\
110	md5 mdconfig mdmfs mknod mount mount_cd9660 mount_ext2fs	\
111	mount_msdosfs mount_nfs mount_ntfs mount_nullfs			\
112	mount_std mount_udf mount_umapfs mount_unionfs newfs		\
113	newfs_msdos nos-tun ping reboot			\
114	restore rcorder route routed rtquery rtsol savecore 		\
115	slattach spppcontrol startslip swapon sysctl tunefs umount 
116
117.if !defined(NO_ATM)
118CRUNCH_PROGS_sbin+= atm atmconfig fore_dnld ilmid
119CRUNCH_LIBS+= -latm
120.endif
121
122.if !defined(NO_INET6)
123CRUNCH_PROGS_sbin+= ping6
124.endif
125
126.if !defined(NO_IPFILTER)
127CRUNCH_PROGS_sbin+= ipf
128.endif
129
130# crunchgen does not like C++ programs; this should be fixed someday
131# CRUNCH_PROGS+= devd
132
133CRUNCH_LIBS+= -lalias -lbsdxml -lcam -lcurses -ldevstat -lipsec -lipx \
134	-lgeom -lkiconv -lmd -lreadline -lsbuf -lufs -lz 
135
136.if ${MACHINE_ARCH} == "i386"
137CRUNCH_PROGS_sbin+= sconfig fdisk
138CRUNCH_ALIAS_bsdlabel= disklabel
139#CRUNCH_PROGS+= mount_nwfs mount_smbfs
140#CRUNCH_LIBS+= -lncp -lsmb
141.endif
142
143.if ${MACHINE} == "pc98"
144CRUNCH_SRCDIR_fdisk= $(.CURDIR)/../../sbin/fdisk_pc98
145.endif
146
147.if ${MACHINE_ARCH} == "ia64"
148CRUNCH_PROGS_sbin+= mca gpt fdisk
149.endif
150
151.if ${MACHINE_ARCH} == "sparc64"
152CRUNCH_PROGS_sbin+= sunlabel
153.endif
154
155.if ${MACHINE_ARCH} == "alpha"
156CRUNCH_ALIAS_bsdlabel= disklabel
157.endif
158
159.if ${MACHINE_ARCH} == "amd64"
160CRUNCH_PROGS_sbin+= fdisk
161CRUNCH_ALIAS_bsdlabel= disklabel
162.endif
163
164CRUNCH_SRCDIR_atm= $(.CURDIR)/../../sbin/atm/atm
165CRUNCH_SRCDIR_atmconfig= $(.CURDIR)/../../sbin/atm/atmconfig
166CRUNCH_SRCDIR_fore_dnld= $(.CURDIR)/../../sbin/atm/fore_dnld
167CRUNCH_SRCDIR_ilmid= $(.CURDIR)/../../sbin/atm/ilmid
168CRUNCH_SRCDIR_rtquery= $(.CURDIR)/../../sbin/routed/rtquery
169CRUNCH_SRCDIR_ipf= $(.CURDIR)/../../sbin/ipf/ipf
170CRUNCH_ALIAS_reboot= fastboot halt fasthalt
171CRUNCH_ALIAS_restore= rrestore
172CRUNCH_ALIAS_dump= rdump
173CRUNCH_ALIAS_fsck_ffs= fsck_4.2bsd fsck_ufs
174CRUNCH_ALIAS_mount_std= mount_devfs mount_fdescfs mount_linprocfs mount_procfs
175
176# dhclient has historically been troublesome...
177CRUNCH_PROGS_sbin+= dhclient
178CRUNCH_BUILDOPTS_dhclient= -DRELEASE_CRUNCH -Dlint
179
180##################################################################
181# Programs from stock /usr/bin
182# 
183CRUNCH_SRCDIRS+= usr.bin
184CRUNCH_SRCDIRS+= gnu/usr.bin
185
186CRUNCH_PROGS_gnu/usr.bin+= gzip
187CRUNCH_ALIAS_gzip= gunzip gzcat zcat
188
189CRUNCH_PROGS_usr.bin+= bzip2
190CRUNCH_ALIAS_bzip2= bunzip2 bzcat
191CRUNCH_LIBS+= -lbz2
192
193CRUNCH_PROGS_usr.bin+= tar
194CRUNCH_LIBS+= -larchive
195
196CRUNCH_PROGS_usr.bin+= vi
197CRUNCH_ALIAS_vi= ex
198
199CRUNCH_PROGS_usr.bin+= id
200CRUNCH_ALIAS_id= groups whoami
201
202##################################################################
203# Programs from stock /usr/sbin
204# 
205CRUNCH_SRCDIRS+= usr.sbin
206
207CRUNCH_PROGS_usr.sbin+= chroot
208
209##################################################################
210#  The following is pretty nearly a generic crunchgen-handling makefile
211#
212
213CONF=	$(PROG).conf
214OUTMK=	$(PROG).mk
215OUTC=   $(PROG).c
216OUTPUTS=$(OUTMK) $(OUTC) $(PROG).cache
217CRUNCHOBJS= ${.OBJDIR}
218.if defined(MAKEOBJDIRPREFIX)
219CANONICALOBJDIR:= ${MAKEOBJDIRPREFIX}${.CURDIR}
220.else
221CANONICALOBJDIR:= /usr/obj${.CURDIR}
222.endif
223
224NO_MAN=
225CLEANFILES+= $(CONF) *.o *.lo *.c *.mk *.cache *.a *.h
226
227# Program names and their aliases contribute hardlinks to 'rescue' executable,
228# except for those that get suppressed.
229.for D in $(CRUNCH_SRCDIRS)
230.for P in $(CRUNCH_PROGS_$(D))
231.ifdef CRUNCH_SRCDIR_${P}
232$(OUTPUTS): $(CRUNCH_SRCDIR_${P})/Makefile
233.else
234$(OUTPUTS): $(.CURDIR)/../../$(D)/$(P)/Makefile
235.endif
236.ifndef CRUNCH_SUPPRESS_LINK_${P}
237LINKS+= $(BINDIR)/$(PROG) $(BINDIR)/$(P)
238.endif
239.for A in $(CRUNCH_ALIAS_$(P))
240.ifndef CRUNCH_SUPPRESS_LINK_${A}
241LINKS+= $(BINDIR)/$(PROG) $(BINDIR)/$(A)
242.endif
243.endfor
244.endfor
245.endfor
246
247all: $(PROG)
248exe: $(PROG)
249
250$(CONF): Makefile
251	echo \# Auto-generated, do not edit >$(.TARGET)
252.ifdef CRUNCH_BUILDOPTS
253	echo buildopts $(CRUNCH_BUILDOPTS) >>$(.TARGET)
254.endif
255.ifdef CRUNCH_LIBS
256	echo libs $(CRUNCH_LIBS) >>$(.TARGET)
257.endif
258.for D in $(CRUNCH_SRCDIRS)
259.for P in $(CRUNCH_PROGS_$(D))
260	echo progs $(P) >>$(.TARGET)
261.ifdef CRUNCH_SRCDIR_${P}
262	echo special $(P) srcdir $(CRUNCH_SRCDIR_${P}) >>$(.TARGET)
263.else
264	echo special $(P) srcdir $(.CURDIR)/../../$(D)/$(P) >>$(.TARGET)
265.endif
266.ifdef CRUNCH_BUILDOPTS_${P}
267	echo special $(P) buildopts DIRPRFX=${DIRPRFX}${P}/ \
268	    $(CRUNCH_BUILDOPTS_${P}) >>$(.TARGET)
269.else
270	echo special $(P) buildopts DIRPRFX=${DIRPRFX}${P}/ >>$(.TARGET)
271.endif
272.for A in $(CRUNCH_ALIAS_$(P))
273	echo ln $(P) $(A) >>$(.TARGET)
274.endfor
275.endfor
276.endfor
277
278# XXX Make sure we don't pass -P to crunchgen(1).
279.MAKEFLAGS:= ${.MAKEFLAGS:N-P}
280.ORDER: $(OUTPUTS) objs
281$(OUTPUTS): $(CONF)
282	MAKEOBJDIRPREFIX=${CRUNCHOBJS} crunchgen -fq -m $(OUTMK) \
283	    -c $(OUTC) $(CONF)
284
285$(PROG): $(OUTPUTS) objs
286	MAKEOBJDIRPREFIX=${CRUNCHOBJS} ${MAKE} -f $(OUTMK) exe
287
288objs: $(OUTMK)
289	MAKEOBJDIRPREFIX=${CRUNCHOBJS} ${MAKE} -f $(OUTMK) objs
290
291# <sigh> Someone should replace the bin/csh and bin/sh build-tools with
292# shell scripts so we can remove this nonsense.
293build-tools:
294.for _tool in bin/csh bin/sh 
295	cd $(.CURDIR)/../../${_tool}; \
296	MAKEOBJDIRPREFIX=${CRUNCHOBJS} ${MAKE} obj; \
297	MAKEOBJDIRPREFIX=${CRUNCHOBJS} ${MAKE} build-tools
298.endfor
299
300# Use a separate build tree to hold files compiled for this crunchgen binary
301# Yes, this does seem to partly duplicate bsd.subdir.mk, but I can't
302# get that to cooperate with bsd.prog.mk.  Besides, many of the standard
303# targets should NOT be propagated into the components.
304cleandepend cleandir obj objlink:
305.for D in $(CRUNCH_SRCDIRS)
306.for P in $(CRUNCH_PROGS_$(D))
307.ifdef CRUNCH_SRCDIR_${P}
308	cd ${CRUNCH_SRCDIR_$(P)} && \
309	    MAKEOBJDIRPREFIX=${CANONICALOBJDIR} ${MAKE} \
310	    DIRPRFX=${DIRPRFX}${P}/ ${.TARGET}
311.else
312	cd $(.CURDIR)/../../${D}/${P} && \
313	    MAKEOBJDIRPREFIX=${CANONICALOBJDIR} ${MAKE} \
314	    DIRPRFX=${DIRPRFX}${P}/ ${.TARGET}
315.endif
316.endfor
317.endfor
318
319clean:
320	rm -f ${CLEANFILES}
321	if [ -e ${.OBJDIR}/$(OUTMK) ]; then				\
322		MAKEOBJDIRPREFIX=${CRUNCHOBJS} ${MAKE} -f $(OUTMK) clean;	\
323	fi
324.for D in $(CRUNCH_SRCDIRS)
325.for P in $(CRUNCH_PROGS_$(D))
326.ifdef CRUNCH_SRCDIR_${P}
327	cd ${CRUNCH_SRCDIR_$(P)} && \
328	    MAKEOBJDIRPREFIX=${CANONICALOBJDIR} ${MAKE} \
329	    DIRPRFX=${DIRPRFX}${P}/ ${.TARGET}
330.else
331	cd $(.CURDIR)/../../${D}/${P} && \
332	    MAKEOBJDIRPREFIX=${CANONICALOBJDIR} ${MAKE} \
333	    DIRPRFX=${DIRPRFX}${P}/ ${.TARGET}
334.endif
335.endfor
336.endfor
337
338.include <bsd.prog.mk>
339