xref: /illumos-gate/usr/src/cmd/etdump/Makefile (revision 916bf6b9509e36cfde18ed64b9fa13c942d2d9bd)
1c0455f33SToomas Soome#
2c0455f33SToomas Soome# This file and its contents are supplied under the terms of the
3c0455f33SToomas Soome# Common Development and Distribution License ("CDDL"), version 1.0.
4c0455f33SToomas Soome# You may only use this file in accordance with the terms of version
5c0455f33SToomas Soome# 1.0 of the CDDL.
6c0455f33SToomas Soome#
7c0455f33SToomas Soome# A full copy of the text of the CDDL should have accompanied this
8c0455f33SToomas Soome# source.  A copy of the CDDL is also available via the Internet at
9c0455f33SToomas Soome# http://www.illumos.org/license/CDDL.
10c0455f33SToomas Soome#
11c0455f33SToomas Soome
12c0455f33SToomas Soome#
13*916bf6b9SToomas Soome# Copyright 2019 Toomas Soome <tsoome@me.com>
14c0455f33SToomas Soome#
15c0455f33SToomas Soome
16c0455f33SToomas SoomePROG=	etdump
17*916bf6b9SToomas SoomeOBJS=	etdump.o output_shell.o output_text.o
18c0455f33SToomas SoomeSRCS=	$(OBJS:%.o=%.c)
19c0455f33SToomas Soome
20c0455f33SToomas Soomeinclude ../Makefile.cmd
21c0455f33SToomas Soome
22c0455f33SToomas Soome.KEEP_STATE:
23c0455f33SToomas Soome
24c0455f33SToomas Soomeall: $(PROG)
25c0455f33SToomas Soome
26c0455f33SToomas Soomeinstall: all $(ROOTPROG)
27c0455f33SToomas Soome
28c0455f33SToomas Soomeclean:
29c0455f33SToomas Soome	$(RM) $(OBJS)
30c0455f33SToomas Soome
31c0455f33SToomas Soome$(PROG):	$(OBJS)
32c0455f33SToomas Soome	$(LINK.c) $(OBJS) -o $@ $(LDLIBS)
33c0455f33SToomas Soome	$(POST_PROCESS)
34c0455f33SToomas Soome
35c0455f33SToomas Soomelint:
36c0455f33SToomas Soome
37c0455f33SToomas Soomeinclude ../Makefile.targ
38