xref: /illumos-gate/usr/src/cmd/file/Makefile (revision 856f620e)
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
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
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]
18#
19# CDDL HEADER END
20#
21#
22# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
23# Use is subject to license terms.
24#
25
26PROG= file
27XPG4PROG= file
28MAGIC= magic
29
30ELFCAP=	$(SRC)/common/elfcap
31SGSRTCID=	$(SRC)/common/sgsrtcid
32
33LOBJS=	file.o elf_read32.o elf_read64.o magicutils.o
34OBJS=	$(LOBJS) elfcap.o
35XPG4OBJS= $(OBJS:%.o=xpg4_%.o)
36SRCS=	file.c elf_read.c magicutils.c $(ELFCAP)/elfcap.c
37
38include ../Makefile.cmd
39
40CSTD=	$(CSTD_GNU99)
41C99LMODE= -Xc99=%all
42
43CERRWARN += -_gcc=-Wno-uninitialized
44CERRWARN += -_gcc=-Wno-type-limits
45
46POFILE= file_all.po
47POFILES= $(SRCS:%.c=%.po)
48
49# The debug binary can be built using the flag
50# -D COPTFLAG=-g CGLOBALSTATIC=
51# This will avoid the multiple symbols definition error
52# for static global variables in elf_read32.o and elf_read64.o
53
54LDLIBS += -lelf
55CPPFLAGS += -I$(ELFCAP) -I$(SGSRTCID)
56$(XPG4) := CFLAGS += -DXPG4
57
58ROOTETCMAGIC= $(MAGIC:%=$(ROOTETC)/%)
59
60$(ROOTETCMAGIC) :=	FILEMODE =	$(LIBFILEMODE)
61
62.PARALLEL:	$(OBJS) $(XPG4OBJS) $(POFILES)
63
64.KEEP_STATE:
65
66all: $(PROG) $(XPG4) $(MAGIC)
67
68$(PROG) : $(OBJS)
69	$(LINK.c) $(OBJS) -o $@ $(LDLIBS)
70	$(POST_PROCESS)
71
72$(XPG4) : $(XPG4OBJS)
73	$(LINK.c) $(XPG4OBJS) -o $@ $(LDLIBS)
74	$(POST_PROCESS)
75
76%.o:	%.c
77	$(COMPILE.c) -o $@ $<
78
79%32.o:	%.c
80	$(COMPILE.c) -o $@ $<
81
82%64.o:	%.c
83	$(COMPILE.c) -D_ELF64 -o $@ $<
84
85xpg4_%.o:	%.c
86	$(COMPILE.c) -o $@ $<
87
88xpg4_%32.o:	%.c
89	$(COMPILE.c) -o $@ $<
90
91xpg4_%64.o:	%.c
92	$(COMPILE.c) -D_ELF64 -o $@ $<
93
94elfcap.o:	$(ELFCAP)/elfcap.c
95	$(COMPILE.c) -o $@ $(ELFCAP)/elfcap.c
96
97xpg4_elfcap.o:	$(ELFCAP)/elfcap.c
98	$(COMPILE.c) -o $@ $(ELFCAP)/elfcap.c
99
100$(POFILE):	$(POFILES)
101	$(RM) $@
102	cat $(POFILES) > $@
103
104install: all $(ROOTPROG) $(ROOTXPG4PROG) $(ROOTETCMAGIC)
105
106clean:
107	$(RM) $(OBJS) $(XPG4OBJS)
108
109lint: lint_SRCS
110
111include ../Makefile.targ
112