# -*-makefile-*- # $Id$ # # Copyright (C) 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. # # # We provide this package # HOST_PACKAGES-$(PTXCONF_HOST_PANGOMM) += host-pangomm # # Paths and names # HOST_PANGOMM_DIR = $(HOST_BUILDDIR)/$(PANGOMM) # ---------------------------------------------------------------------------- # Get # ---------------------------------------------------------------------------- $(STATEDIR)/host-pangomm.get: $(STATEDIR)/pangomm.get @$(call targetinfo) @$(call touch) # ---------------------------------------------------------------------------- # Extract # ---------------------------------------------------------------------------- $(STATEDIR)/host-pangomm.extract: @$(call targetinfo) @$(call clean, $(HOST_PANGOMM_DIR)) @$(call extract, PANGOMM, $(HOST_BUILDDIR)) @$(call patchin, PANGOMM, $(HOST_PANGOMM_DIR)) @$(call touch) # ---------------------------------------------------------------------------- # Prepare # ---------------------------------------------------------------------------- HOST_PANGOMM_PATH := PATH=$(HOST_PATH) HOST_PANGOMM_ENV := $(HOST_ENV) # # autoconf # HOST_PANGOMM_AUTOCONF := $(HOST_AUTOCONF) # ---------------------------------------------------------------------------- # Clean # ---------------------------------------------------------------------------- host-pangomm_clean: rm -rf $(STATEDIR)/host-pangomm.* rm -rf $(HOST_PANGOMM_DIR) # vim: syntax=make