dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / cmd / dfs.cmds / general / Makefile
blobc57125fed5ab57e371e3906327aaf153d90b7ea2
2 # CDDL HEADER START
4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License, Version 1.0 only
6 # (the "License"). You may not use this file except in compliance
7 # with the License.
9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 # or http://www.opensolaris.org/os/licensing.
11 # See the License for the specific language governing permissions
12 # and limitations under the License.
14 # When distributing Covered Code, include this CDDL HEADER in each
15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 # If applicable, add the following below this CDDL HEADER, with the
17 # fields enclosed by brackets "[]" replaced with your own identifying
18 # information: Portions Copyright [yyyy] [name of copyright owner]
20 # CDDL HEADER END
23 # Copyright 2004 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
26 # "general" is intended to be a generic way to invoke a filesystem-specific
27 # command, but at the moment, only /usr/sbin/unshare uses this facility.
28 # Until someone else needs this functionality, this will be turned off
29 # so that we don't wind up with a spurious /usr/sbin/general. To use
30 # "general" more fully in future, remove the comments from the lines below.
33 PROG= unshare
34 #PROG= general
36 OBJS= general.o
37 SRCS= general.c
39 #ROOTLINK= $(ROOTUSRSBIN)/unshare
41 CFLAGS += -Wl,-s
43 include ../../Makefile.cmd
45 CERRWARN += -Wno-parentheses
47 .KEEP_STATE:
49 all: $(PROG)
51 $(PROG): $(OBJS)
52 $(LINK.c) -o $@ $(OBJS) $(LDFLAGS) $(LDLIBS)
53 $(POST_PROCESS)
55 install: all $(ROOTUSRSBINPROG) $(ROOTLINK)
57 #$(ROOTLINK): $(ROOTUSRSBINPROG)
58 # $(RM) $@; $(LN) $(ROOTUSRSBINPROG) $@
60 clean:
61 $(RM) $(OBJS)
64 include ../../Makefile.targ