xref: /illumos-gate/usr/src/cmd/mkfifo/Makefile (revision dbed73cbda2229fd1aa6dc5743993cae7f0a7ee9)
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, Version 1.0 only
6# (the "License").  You may not use this file except in compliance
7# with the License.
8#
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.
13#
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]
19#
20# CDDL HEADER END
21#
22#
23#ident	"%Z%%M%	%I%	%E% SMI"
24#
25# Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
26# Use is subject to license terms.
27#
28# cmd/mkfifo/Makefile
29#
30
31PROG= mkfifo
32OBJS= $(PROG).o common.o
33SRCS= mkfifo.c ../chmod/common.c
34
35include ../Makefile.cmd
36
37CFLAGS += $(CCVERBOSE)
38
39%.o: ../chmod/%.c
40	$(COMPILE.c) -o $@ $<
41
42#  The following was derived from the default .c.po rule in the master
43#  makefile.  It had to be adapted to avoid writing the intermediate (.i)
44#  file in ../chmod.
45
46%.po: ../chmod/%.c
47	$(COMPILE.cpp) $< > $*.c.i
48	$(XGETTEXT) $(XGETFLAGS) $*.c.i ;\
49	$(RM)	$@ ;\
50	sed "/^domain/d" < messages.po  > $@ ;\
51	$(RM) messages.po $*.c.i
52
53POFILES= $(OBJS:%.o=%.po)
54POFILE= $(PROG)_cmd.po
55
56.KEEP_STATE:
57
58all: $(PROG)
59
60$(PROG): $(OBJS)
61	$(LINK.c) $(OBJS) -o $@ $(LDLIBS)
62	$(POST_PROCESS)
63
64$(POFILE): $(POFILES)
65	$(RM) $@
66	cat $(POFILES) > $@
67
68install: all $(ROOTPROG)
69
70clean:
71	$(RM) $(OBJS)
72
73lint:	lint_SRCS
74
75include ../Makefile.targ
76