xref: /titanic_44/usr/src/psm/stand/bootblks/zfs/Makefile.zfs (revision a576ab5b6e08c47732b3dedca9eaa8a8cbb85720)
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21#
22# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
23# Use is subject to license terms.
24#
25#ident	"%Z%%M%	%I%	%E% SMI"
26#
27# psm/stand/bootblks/zfs/Makefile.zfs
28#
29
30include $(BASEDIR)/Makefile.com
31
32#
33# Define FS dependent targets
34#
35
36ZFS_DIR			= $(BASEDIR)/zfs/common
37
38ZFSBOOT_FTH		= $(ZFS_DIR)/boot-zfs.fth
39ZFS_FTH			= $(ZFS_DIR)/zfs.fth
40
41FS_FCODE		= boot-zfs.fcode
42FS_BB			= zfs.bb
43
44ZFSDBGBOOT_FTH		= $(ZFS_DIR)/debug-zfs.fth
45ZFSDBG_FTH		= $(ZFS_DIR)/big-zfs.fth
46
47DBGBOOT_FCODE		= debug-zfs.fcode
48DBGFS_FCODE		= big-zfs.fcode
49
50DBGFS_BB		= debugzfs.bb
51DBGPROG			= debugbb
52
53DBG_CLEAN		+= $(DBGBOOT_FCODE) $(DBGFS_FCODE)
54DBG_CLOBBER		+= $(DBGPROG) $(DBGFS_BB)
55
56#
57# Where and how stuff gets installed
58#
59USR_PSM_BOOTBLOCK	= $(USR_PSM_LIB_ZFS_DIR)/$(PROG)
60
61%.fcode:	$(BASEDIR)/zfs/common/%.fth
62	$(TOKENIZE) $<
63
64# make doesn't know fload
65$(FS_FCODE):	$(UTIL_FTH) $(ZFS_FTH) $(BOOT_FTH)
66	$(TOKENIZE) $(ZFSBOOT_FTH)
67
68
69$(DBGBOOT_FCODE):	$(UTIL_FTH) $(BOOT_FTH)
70	$(TOKENIZE) $(ZFSDBGBOOT_FTH)
71
72$(DBGFS_FCODE):		$(UTIL_FTH) $(ZFS_FTH)
73	$(TOKENIZE) $(ZFSDBG_FTH)
74
75$(DBGFS_BB):		$(MKBB) $(DBGBOOT_FCODE) $(DBGFS_FCODE) $(RD_FCODE)
76	$(MKBB) -e $(DBGFS_FCODE) $(DBGBOOT_FCODE) $(RD_FCODE) $(DBGFS_BB)
77
78$(DBGPROG):		$(DBGFS_BB)
79	@-$(RM) $@
80	cp -p $(DBGFS_BB) $@
81
82debug:	$(DBGPROG)
83