Makefile (24fe0b3bf671e123467ce1df0b67cadd3614c8e4) Makefile (269f47de02761bab3b7b28e2007a2bac34f629cc)
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

--- 6 unchanged lines hidden (view full) ---

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#
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

--- 6 unchanged lines hidden (view full) ---

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#
23# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
24# Use is subject to license terms.
23# Copyright (c) 1992, 2010, Oracle and/or its affiliates. All rights reserved.
25#
26
27ETCTSOLFILES = devalloc_defaults
28
29include ../Makefile.cmd
30
31ROOTSEC = $(ROOTETC)/security
32ROOTSECDEV = $(ROOTSEC)/dev
33ROOTSECLIB = $(ROOTSEC)/lib
34ROOTSECAUD = $(ROOTSEC)/audio
35ROOTDIRS = $(ROOTSECDEV) $(ROOTSECLIB) $(ROOTSECAUD)
36
24#
25
26ETCTSOLFILES = devalloc_defaults
27
28include ../Makefile.cmd
29
30ROOTSEC = $(ROOTETC)/security
31ROOTSECDEV = $(ROOTSEC)/dev
32ROOTSECLIB = $(ROOTSEC)/lib
33ROOTSECAUD = $(ROOTSEC)/audio
34ROOTDIRS = $(ROOTSECDEV) $(ROOTSECLIB) $(ROOTSECAUD)
35
36ROOTMANIFESTDIR= $(ROOTSVCSYSTEMDEVICE)
37SVCMETHOD = svc-allocate
38MANIFEST = allocate.xml
39
37RTLCKS = audio fd0 sr0 st0 st1
38CLEANfd = fd_clean
39CLEANsr = sr_clean
40CLEANst = st_clean
41CLEANaudio = audio_clean
42CLEANdisk = disk_clean
43CLEAN_SCRIPTS = $(CLEANfd) $(CLEANsr) $(CLEANst) $(CLEANaudio) $(CLEANdisk)
44WDW_SCRIPTS = wdwmsg wdwwrapper

--- 57 unchanged lines hidden (view full) ---

102
103CLOBBERFILES += $(SCRIPTS)
104
105.KEEP_STATE:
106
107all : $(PROG) $(RTLCKS) $(SCRIPTS)
108
109install : $(PROG) $(ROOTDIRS) $(ROOTPROG) $(ROOTLOCKS) \
40RTLCKS = audio fd0 sr0 st0 st1
41CLEANfd = fd_clean
42CLEANsr = sr_clean
43CLEANst = st_clean
44CLEANaudio = audio_clean
45CLEANdisk = disk_clean
46CLEAN_SCRIPTS = $(CLEANfd) $(CLEANsr) $(CLEANst) $(CLEANaudio) $(CLEANdisk)
47WDW_SCRIPTS = wdwmsg wdwwrapper

--- 57 unchanged lines hidden (view full) ---

105
106CLOBBERFILES += $(SCRIPTS)
107
108.KEEP_STATE:
109
110all : $(PROG) $(RTLCKS) $(SCRIPTS)
111
112install : $(PROG) $(ROOTDIRS) $(ROOTPROG) $(ROOTLOCKS) \
110 $(ROOTSCRIPTS) $(ROOTLINKS) $(ROOTWDWLINKS) $(ROOTETCTSOLFILES)
111
113 $(ROOTSCRIPTS) $(ROOTLINKS) $(ROOTWDWLINKS) \
114 $(ROOTETCTSOLFILES) $(ROOTMANIFEST) $(ROOTSVCMETHOD)
112$(RTLCKS):
113 $(TOUCH) $@
114
115$(ROOTSECLIB)/%: %.sh
116 $(INS.rename)
117
118$(PROGalloc) : $(PROGallocOBJS)
119 $(LINK.c) $(PROGallocOBJS) -o $@ $(LDLIBS)

--- 63 unchanged lines hidden ---
115$(RTLCKS):
116 $(TOUCH) $@
117
118$(ROOTSECLIB)/%: %.sh
119 $(INS.rename)
120
121$(PROGalloc) : $(PROGallocOBJS)
122 $(LINK.c) $(PROGallocOBJS) -o $@ $(LDLIBS)

--- 63 unchanged lines hidden ---