6901121 assertion failed: hubd->h_intr_pipe_state == HUBD_INTR_PIPE_ACTIVE
[unleashed.git] / usr / src / cmd / pcmciad / Makefile
blobce2f5920f466879e770bae5f3e1148f1c4dae8c0
2 # CDDL HEADER START
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.
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.
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]
19 # CDDL HEADER END
22 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
25 # cmd/pcmciad/Makefile
28 include ../Makefile.cmd
30 PROG= pcmciad
32 # srcs
33 SRCS = $(PROG:%=%.c)
34 DEVS=
36 SOFILES= ${DEVS}
38 # objects
39 OBJECTS = $(SRCS:%.c=%.o)
41 LDLIBS += -lvolmgt
42 CFLAGS += $(CCVERBOSE)
43 $(SOFILES) := LDLIBS += -lc
44 # to get the correct DSO flags used for compilation/linking
45 $(SOFILES) := CFLAGS += $(C_PICFLAGS)
46 $(SOFILES) := LDFLAGS += $(ZTEXT)
48 ROOTLIBPROG= $(PROG:%=$(ROOTLIB)/%)
50 FILEMODE= 555
52 all := TARGET= all
53 install := TARGET= install
54 clean := TARGET= clean
55 clobber := TARGET= clobber
56 lint := TARGET= lint
58 .KEEP_STATE:
60 all: $(PROG) $(DEVLINK) $(SOFILES)
62 $(PROG): $(COMMONOBJ) $(LIBS)
64 # build rule
65 %: %.c $(COMMONOBJ)
66 $(LINK.c) -o $@ $< $(COMMONOBJ) $(LIBS) $(LDLIBS)
67 $(POST_PROCESS)
69 .SUFFIXES: .so.1 ${SUFFIXES}
71 .c.so.1:
72 ${CC} ${CPPFLAGS} ${CFLAGS} $(GSHARED) -o $@ $< $(LDLIBS) $(LDFLAGS)
73 $(POST_PROCESS_SO)
75 install: all $(ROOTLIBPROG) $(ROOTDEVLINK)
77 $(ROOTLIB)/%: %
78 $(INS.file)
80 clean: $(LIBSUBDIRS)
81 $(RM) $(OBJECTS) $(DEVLINK)
83 lint: lint_SRCS
85 FRC:
87 include ../Makefile.targ
89 # additional dependency for clobber which is defined in ../Makefile.targ
90 clobber: