Makefile (73427c57f824c3ec3b396181b163f37d50c5b3b1) Makefile (486c6fda733647db4d2e8669d1fcb62cacd299d1)
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 unchanged lines hidden (view full) ---

18#
19# CDDL HEADER END
20#
21
22#
23# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
24# Use is subject to license terms.
25#
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 unchanged lines hidden (view full) ---

18#
19# CDDL HEADER END
20#
21
22#
23# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
24# Use is subject to license terms.
25#
26# ident "%Z%%M% %I% %E% SMI"
27#
28
29PROG= dtrace
30
31include ../Makefile.cmd
32
26
27PROG= dtrace
28
29include ../Makefile.cmd
30
33SUBDIRS= $(MACH) demo test
34$(BUILD64)SUBDIRS += $(MACH64)
31SUBDIRS= $(MACH64) demo test
35
36all := TARGET = all
37install := TARGET = install
38clean := TARGET = clean
39clobber := TARGET = clobber
32
33all := TARGET = all
34install := TARGET = install
35clean := TARGET = clean
36clobber := TARGET = clobber
40lint := TARGET = lint
41
42.KEEP_STATE:
43
37
38.KEEP_STATE:
39
44all: $(SUBDIRS)
40all clean clobber install: $(SUBDIRS)
45
41
46clean clobber lint: $(SUBDIRS)
47
48install: $(SUBDIRS)
49 -$(RM) $(ROOTUSRSBINPROG)
50 -$(LN) $(ISAEXEC) $(ROOTUSRSBINPROG)
51
52$(SUBDIRS): FRC
53 @cd $@; pwd; $(MAKE) $(TARGET)
54
55FRC:
56
57include ../Makefile.targ
42$(SUBDIRS): FRC
43 @cd $@; pwd; $(MAKE) $(TARGET)
44
45FRC:
46
47include ../Makefile.targ