8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / cmd / iconv / Makefile
blob9e4a83cc181055b16b22f43ec9f1f6bbeefc392b
2 # This file and its contents are supplied under the terms of the
3 # Common Development and Distribution License ("CDDL"), version 1.0.
4 # You may only use this file in accordance with the terms of version
5 # 1.0 of the CDDL.
7 # A full copy of the text of the CDDL should have accompanied this
8 # source. A copy of the CDDL is also available via the Internet at
9 # http://www.illumos.org/license/CDDL.
13 # Copyright 2011 Nexenta Systems, Inc. All rights reserved.
16 PROG=iconv
18 include ../Makefile.cmd
19 include ../Makefile.ctf
21 OBJS = iconv_main.o iconv_list.o charmap.o parser.tab.o scanner.o
23 SRCS = $(OBJS:%.o=%.c)
25 C99MODE= $(C99_ENABLE)
26 LDLIBS += -lcmdutils -lavl
27 YFLAGS = -d -b parser
28 CPPFLAGS += -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
29 $(RELEASE_BUILD) CPPFLAGS += -DNDEBUG
31 CERRWARN += -_gcc=-Wno-unused-label
33 CLEANFILES = $(OBJS) parser.tab.c parser.tab.h
34 CLOBBERFILES = $(PROG) $(POFILE)
35 PIFILES = $(OBJS:%.o=%.i)
36 POFILE = iconv_cmd.po
38 all: $(PROG)
40 install: all $(ROOTPROG)
42 $(PROG): $(OBJS)
43 $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
44 $(POST_PROCESS)
46 $(OBJS): parser.tab.h
48 parser.tab.c parser.tab.h: parser.y
49 $(YACC) $(YFLAGS) parser.y
51 lint: $(SRCS)
52 $(LINT.c) $(CPPFLAGS) $(SRCS)
54 clean:
55 $(RM) $(CLEANFILES)
57 $(POFILE): $(PIFILES)
58 $(RM) $@
59 $(RM) messages.po
60 $(XGETTEXT) -s $(PIFILES)
61 $(SED) -e '/domain/d' messages.po > $@
62 $(RM) $(PIFILES) messages.po
64 .KEEP_STATE:
66 include ../Makefile.targ