Makefile.com revision f808c858fa61e7769218966759510a8b1190dfcf
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# ident "%Z%%M% %I% %E% SMI"
#
LIBRARY = libwanboot.a
VERS = .1
include $(SRC)/lib/openssl/Makefile.openssl
# List of locally located modules.
LOC_DIR = ../common
LOC_OBJS = socket_inet.o bootinfo_aux.o
LOC_SRCS = $(LOC_OBJS:%.o=$(LOC_DIR)/%.c)
# List of common wanboot objects.
COM_DIR = ../../../common/net/wanboot
COM_OBJS = auxutil.o \
boot_http.o \
bootconf.o \
bootconf_errmsg.o \
bootinfo.o \
bootlog.o \
http_errorstr.o \
p12access.o \
p12auxpars.o \
p12auxutl.o \
p12err.o \
p12misc.o \
parseURL.o
COM_SRCS = $(COM_OBJS:%.o=$(COM_DIR)/%.c)
# List of common DHCP modules.
DHCP_DIR = $(SRC)/common/net/dhcp
DHCP_OBJS = dhcpinfo.o
DHCP_SRCS = $(DHCP_OBJS:%.o=$(DHCP_DIR)/%.c)
OBJECTS = $(LOC_OBJS) $(COM_OBJS) $(DHCP_OBJS)
include ../../Makefile.lib
LIBS += $(LINTLIB)
LDLIBS += -lnvpair -lresolv -lnsl -lsocket -ldevinfo -ldhcputil \
-linetutil -lc $(OPENSSL_LDFLAGS) -lcrypto -lssl
DYNFLAGS += $(OPENSSL_DYNFLAGS)
#
# Note this uses CPPFLAGS.master to prepend because our parent may have
# an old version of the OpenSSL headers in $ROOT/usr/include/openssl
CPPFLAGS = $(OPENSSL_CPPFLAGS) \
-I$(SRC)/common/net/wanboot/crypt $(CPPFLAGS.master)
# Must override SRCS from Makefile.lib since sources have
# multiple source directories.
SRCS = $(LOC_SRCS) $(COM_SRCS) $(DHCP_SRCS)
# Must define location of lint library source.
SRCDIR = $(LOC_DIR)
$(LINTLIB) := SRCS = $(SRCDIR)/$(LINTSRC)
# OpenSSL requires us to turn this off
LINTFLAGS += -erroff=E_BAD_PTR_CAST_ALIGN
CFLAGS += $(CCVERBOSE)
CPPFLAGS += -I$(LOC_DIR) -I$(COM_DIR) -I$(DHCP_DIR)
.KEEP_STATE:
all: $(LIBS)
lint: lintcheck
pics/%.o: $(COM_DIR)/%.c
$(COMPILE.c) -o $@ $<
$(POST_PROCESS_O)
pics/%.o: $(DHCP_DIR)/%.c
$(COMPILE.c) -o $@ $<
$(POST_PROCESS_O)
include ../../Makefile.targ