blob: 799bb5f6397858bf5acbd01382c06f6d9357c075 [file] [log] [blame]
#
# Copyright (c) 2010-2011 Nest, Inc.
# All rights reserved.
#
# This document is the property of Nest. It is considered
# confidential and proprietary information.
#
# This document may not be reproduced or transmitted in any form,
# in whole or in part, without the express written permission of
# Nest.
#
# Description:
# This file is for the Linux process utilities, procps. These
# utilities provide both command line and full-screen information
# about the Linux process table and the processes within it.
#
include pre.mak
PackageName := procps
PackageExtension := tar.gz
PackageSeparator := -
PackagePatchArgs := -p1
PackageArchive := $(PackageName).$(PackageExtension)
PackageSourceDir := $(PackageName)$(PackageSeparator)$(PackageVersion)
PackageBuildMakefile = $(call GenerateBuildPaths,Makefile)
LicenseSourceFiles := COPYING COPYING.LIB
LicenseSourcePaths := $(addprefix $(PackageSourceDir)/,$(LicenseSourceFiles))
CleanPaths += $(PackageLicenseFile)
SOURCEDIRS = $(PackageSourceDir)
$(PackageSourceDir)_RULE_TARGET = $(BuildDirectory)/configure
all: $(PackageDefaultGoal)
# Generate the package license contents.
$(LicenseSourcePaths): $(BuildDirectory)/source
$(PackageLicenseFile): $(LicenseSourcePaths)
$(Verbose)for file in $(LicenseSourcePaths); do \
echo "Concatenating \"$${file}\"..."; \
cat $${file} >> $@; \
done
$(Verbose)touch $@
# Extract the source from the archive and apply patches, if any.
$(PackageSourceDir): $(PackageArchive) $(PackagePatchPaths)
$(expand-and-patch-package)
# Prepare the sources.
$(BuildDirectory)/source: | $(PackageSourceDir) $(BuildDirectory)
$(Verbose)touch $@
# Patch the sources, if necessary.
$(BuildDirectory)/patch: $(BuildDirectory)/source
$(Verbose)touch $@
# Generate the package build makefile.
# Configure the source for building.
$(BuildDirectory)/configure: $(BuildDirectory)/source | $(PackageSourceDir) $(BuildDirectory)
$(call create-links,$(CURDIR)/$(PackageSourceDir),$(BuildDirectory))
$(Verbose)touch $@
# Build the source.
#
# We have to unset MAKEFLAGS since they confuse the package build otherwise.
$(BuildDirectory)/build: $(BuildDirectory)/configure | $(BuildDirectory)
$(Verbose)unset MAKEFLAGS && \
$(MAKE) $(JOBSFLAG) -C $(BuildDirectory) \
CC="$(CC) $(CPPOPTFLAGS)" CXX="$(CXX) $(CPPOPTFLAGS)" AR=$(AR) NM=$(NM) RANLIB=$(RANLIB) STRIP=$(STRIP) \
CPPFLAGS="$(call ToolGenerateIncludeArgument,$(LinuxIncludePath)) \
$(call ToolGenerateIncludeArgument,$(NCursesIncludePath))" \
LDFLAGS="$(call GenerateLibraryPathArgument,$(NCursesLibraryPath))" \
all
$(Verbose)touch $@
# Stage the build to a temporary installation area.
#
# We have to unset MAKEFLAGS since they confuse the package build otherwise.
#
# Also, override both install and ldconfig. We aren't running install
# for a native host and we aren't running as super user, so the
# default actions for those won't otherwise work.
.PHONY: stage
stage: $(BuildDirectory)/stage-default $(BuildDirectory)/stage-headers
$(BuildDirectory)/stage-default: $(BuildDirectory)/build | $(ResultDirectory)
$(Verbose)unset MAKEFLAGS && \
$(MAKE) $(JOBSFLAG) -C $(BuildDirectory) \
DESTDIR=$(ResultDirectory) \
install="$(shell which install) -D" \
ldconfig="$(shell which true)" \
m64=-m32 \
lib64=lib \
install
$(Verbose)touch $@
ResultHeaderDir = $(ResultDirectory)/usr/include/proc
SourceHeaderPaths = $(wildcard $(BuildDirectory)/proc/*.h)
$(ResultHeaderDir):
$(create-directory)
$(BuildDirectory)/stage-headers: $(BuildDirectory)/build | $(ResultHeaderDir)
install --mode=0664 $(SourceHeaderPaths) $(ResultHeaderDir)
$(Verbose)touch $@
clean:
$(Verbose)$(RM) $(RMFLAGS) -r $(PackageSourceDir)
$(Verbose)$(RM) $(RMFLAGS) -r $(BuildDirectory)
$(Verbose)$(RM) $(RMFLAGS) -r $(ResultDirectory)
include post.mak