1 | #
|
---|
2 | # Copyright 2002 Sun Microsystems, Inc. All rights reserved.
|
---|
3 | # Use is subject to license terms.
|
---|
4 | #
|
---|
5 | #ident "$Id: Makefile.com 1 1970-01-01 00:00:00Z vboxsync $"
|
---|
6 | #
|
---|
7 |
|
---|
8 | MACH = $(shell mach)
|
---|
9 |
|
---|
10 | PUBLISH_ROOT = $(DIST)
|
---|
11 | ifeq ($(MOD_DEPTH),../..)
|
---|
12 | ROOT = ROOT
|
---|
13 | else
|
---|
14 | ROOT = $(subst ../../,,$(MOD_DEPTH))/ROOT
|
---|
15 | endif
|
---|
16 |
|
---|
17 | PKGARCHIVE = $(dist_libdir)/pkgarchive
|
---|
18 | DATAFILES = copyright
|
---|
19 | FILES = $(DATAFILES) pkginfo prototype
|
---|
20 |
|
---|
21 | PACKAGE = $(shell basename `pwd`)
|
---|
22 |
|
---|
23 | PRODUCT_VERSION = $(shell grep PR_VERSION $(dist_includedir)/prinit.h \
|
---|
24 | | sed -e 's/"$$//' -e 's/.*"//' -e 's/ .*//')
|
---|
25 |
|
---|
26 | LN = /usr/bin/ln
|
---|
27 |
|
---|
28 | CLOBBERFILES = $(FILES)
|
---|
29 |
|
---|
30 | include $(topsrcdir)/config/rules.mk
|
---|
31 |
|
---|
32 | # vim: ft=make
|
---|