1 | # $Id: Makefile.kmk 10190 2008-07-04 02:25:55Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the external apps.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
8 | #
|
---|
9 | # Sun Microsystems, Inc. confidential
|
---|
10 | # All rights reserved
|
---|
11 | #
|
---|
12 |
|
---|
13 | SUB_DEPTH = ../..
|
---|
14 | include $(KBUILD_PATH)/subheader.kmk
|
---|
15 |
|
---|
16 | ifdef VBOX_WITH_KCHMVIEWER
|
---|
17 | ifneq ($(wildcard $(PATH_SUB_CURRENT)/kchmviewer-2.6),)
|
---|
18 | include $(PATH_SUB_CURRENT)/kchmviewer-2.6/Makefile.kmk
|
---|
19 | endif
|
---|
20 | endif
|
---|
21 | ifneq ($(wildcard $(PATH_SUB_CURRENT)/tunctl),)
|
---|
22 | ifeq ($(KBUILD_TARGET),linux)
|
---|
23 | include $(PATH_SUB_CURRENT)/tunctl/Makefile.kmk
|
---|
24 | endif
|
---|
25 | endif
|
---|
26 |
|
---|
27 | include $(KBUILD_PATH)/subfooter.kmk
|
---|
28 |
|
---|