blob: d90074d7062ca8179566ca89c94aebe937261b5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# From the system on which the test is being run
#
#if !defined(RELEASE_MAJOR)
include $(ROOT)/usr/include/make/releasedefs
#endif
OS_REL = $(RELEASE_MAJOR).$(RELEASE_MINOR)
IRIX = IRIX$(OS_REL:S/./_/g)
# IMPORTANT
# set this to match the style of the IRIX kernel you are
# testing on locally
#
IRIX_OBJECT != ../src/get-irix-object
# Stuff that varies ...
HAVE_DEV_IN_LIBPCP != sed -n '/^\#ifdef HAVE_DEV_IN_LIBPCP/s/\#ifdef /-D/p' /usr/include/pcp/impl.h
|