Makefile.com revision 8192:1e71c4032126
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# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
22# Use is subject to license terms.
23#
24
25LIBRARY =	libwanboot.a
26VERS =		.1
27
28include $(SRC)/lib/openssl/Makefile.openssl
29
30# List of locally located modules.
31LOC_DIR =	../common
32LOC_OBJS =	socket_inet.o bootinfo_aux.o
33LOC_SRCS =	$(LOC_OBJS:%.o=$(LOC_DIR)/%.c)
34
35# List of common wanboot objects.
36COM_DIR =	../../../common/net/wanboot
37COM_OBJS =	auxutil.o \
38		boot_http.o \
39		bootconf.o \
40		bootconf_errmsg.o \
41		bootinfo.o \
42		bootlog.o \
43		http_errorstr.o \
44		p12access.o \
45		p12auxpars.o \
46		p12auxutl.o \
47		p12err.o \
48		p12misc.o \
49		parseURL.o
50COM_SRCS =	$(COM_OBJS:%.o=$(COM_DIR)/%.c)
51
52# List of common DHCP modules.
53DHCP_DIR =	$(SRC)/common/net/dhcp
54DHCP_OBJS =	dhcpinfo.o
55DHCP_SRCS =	$(DHCP_OBJS:%.o=$(DHCP_DIR)/%.c)
56
57OBJECTS =	$(LOC_OBJS) $(COM_OBJS) $(DHCP_OBJS)
58
59include ../../Makefile.lib
60
61LIBS +=		$(LINTLIB)
62LDLIBS +=	-lnvpair -lresolv -lnsl -lsocket -ldevinfo -ldhcputil \
63    		-linetutil -lc -lcrypto -lssl
64CPPFLAGS =	-I$(SRC)/common/net/wanboot/crypt $(CPPFLAGS.master)
65
66# Must override SRCS from Makefile.lib since sources have
67# multiple source directories.
68SRCS =		$(LOC_SRCS) $(COM_SRCS) $(DHCP_SRCS)
69
70# Must define location of lint library source.
71SRCDIR =	$(LOC_DIR)
72$(LINTLIB) :=	SRCS = $(SRCDIR)/$(LINTSRC)
73
74# OpenSSL requires us to turn this off
75LINTFLAGS +=    -erroff=E_BAD_PTR_CAST_ALIGN
76
77CFLAGS +=	$(CCVERBOSE)
78CPPFLAGS +=	-I$(LOC_DIR) -I$(COM_DIR) -I$(DHCP_DIR)
79
80.KEEP_STATE:
81
82all: $(LIBS)
83
84lint: lintcheck
85
86pics/%.o: $(COM_DIR)/%.c
87	$(COMPILE.c) -o $@ $<
88	$(POST_PROCESS_O)
89
90pics/%.o: $(DHCP_DIR)/%.c
91	$(COMPILE.c) -o $@ $<
92	$(POST_PROCESS_O)
93
94include ../../Makefile.targ
95