1#
2# The contents of this file are subject to the terms
3# of the Common Development and Distribution License
4# (the "License").  You may not use this file except
5# in compliance with the License.
6#
7# You can obtain a copy of the license at
8# src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing
11# permissions and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL
14# HEADER in each file and include the License file at
15# usr/src/OPENSOLARIS.LICENSE.  If applicable,
16# add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your
18# own identifying information: Portions Copyright [yyyy]
19# [name of copyright owner]
20#
21# CDDL HEADER END
22#
23
24#
25# Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
26# Use is subject to license terms.
27#
28
29Embedded=$(shell tconf --test TARGET_OS_EMBEDDED)
30
31ALL = 			\
32		create_file	\
33		geekbench_stdlib_write	\
34		getppid			\
35		lb_mmtest		\
36		lm_null_call		\
37		lmbench_bw_file_rd	\
38		lmbench_bw_mem		\
39		lmbench_bw_mmap_rd	\
40		lmbench_bw_unix		\
41		lmbench_fstat		\
42		lmbench_lat_ctx		\
43		lmbench_lat_sig_catch	\
44		lmbench_lat_sig_install	\
45		lmbench_lat_sig_prot	\
46		lmbench_lat_sig_send	\
47		lmbench_openclose	\
48		lmbench_read		\
49		lmbench_select_file	\
50		lmbench_select_tcp	\
51		lmbench_stat		\
52		lmbench_write		\
53		posix_spawn		\
54		trivial			\
55		vm_allocate \
56		mbr_check_service_membership  \
57		getpwnam		\
58		mbr_check_membership	\
59		getpwuid		\
60		getgrgid		\
61		getpwent		\
62		getgrent		\
63		getaddrinfo_host	\
64		getaddrinfo_port	\
65		getgrnam
66
67# Compile the following test on desktop platform only  
68ifeq "$(Embedded)" "NO"
69ALL += od_query_create_with_node
70endif
71
72