1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
# -*- mode: makefile; coding: utf-8 -*-
# This is a part of debnest.
#
# $Id: debnest.mk,v 1.6 2003/05/26 02:58:01 taru Exp $
#
ifndef _cdbs_bootstrap
_cdbs_scripts_path ?= /usr/lib/cdbs
_cdbs_rules_path ?= /usr/share/cdbs/1/rules
_cdbs_class_path ?= /usr/share/cdbs/1/class
endif
ifndef _cdbs_rules_debnest
_cdbs_rules_debnest := 1
include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix)
cdbs_debnest_packages := $(DEB_ALL_PACKAGES)
DEBNEST_PACKAGES = $(cdbs_debnest_packages)
_cdbs_debnest_indep_packages = $(filter $(DEB_INDEP_PACKAGES),$(cdbs_debnest_packages))
_cdbs_debnest_arch_packages = $(filter $(DEB_ARCH_PACKAGES),$(cdbs_debnest_packages))
include /usr/share/debnest/debnest-core.mk
pre-build:: debnest-unpack
common-build:: debnest-build
$(patsubst %,binary/%,$(_cdbs_debnest_indep_packages)) :: binary/% : debnest-binary-indep
$(patsubst %,binary/%,$(_cdbs_debnest_arch_packages)) :: binary/% : debnest-binary-arch
clean:: debnest-clean
endif
|