# -*-makefile-*- # # Copyright (C) 2005, 2006, 2007 Robert Schwebel # 2008, 2009 by Marc Kleine-Budde # # See CREDITS for details about who has contributed to this project. # # For further information about the PTXdist project and license conditions # see the README file. # # # install_init # # prepares for new xpkg package creation # # $1: xpkg label # install_init = \ $(call xpkg/prepare, $(1)) # # xpkg/prepare # # prepares for new xpkg package creation # # $1: xpkg label # xpkg/prepare = \ $(call xpkg/env, $(1)) \ ptxd_make_xpkg_prepare # vim: syntax=make