# -*-makefile-*- # # 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 # PACKAGES-$(PTXCONF_RTPS) += rtps RTPS_VERSION := 1.0 RTPS_LICENSE := GPLv2 # ---------------------------------------------------------------------------- # Get # ---------------------------------------------------------------------------- $(STATEDIR)/rtps.get: @$(call targetinfo) @$(call touch) # ---------------------------------------------------------------------------- # Extract # ---------------------------------------------------------------------------- $(STATEDIR)/rtps.extract: @$(call targetinfo) @$(call touch) # ---------------------------------------------------------------------------- # Prepare # ---------------------------------------------------------------------------- $(STATEDIR)/rtps.prepare: @$(call targetinfo) @$(call touch) # ---------------------------------------------------------------------------- # Compile # ---------------------------------------------------------------------------- $(STATEDIR)/rtps.compile: @$(call targetinfo) @$(call touch) # ---------------------------------------------------------------------------- # Install # ---------------------------------------------------------------------------- $(STATEDIR)/rtps.install: @$(call targetinfo) @$(call touch) # ---------------------------------------------------------------------------- # Target-Install # ---------------------------------------------------------------------------- $(STATEDIR)/rtps.targetinstall: @$(call targetinfo) @$(call install_init, rtps) @$(call install_fixup,rtps,PACKAGE,rtps) @$(call install_fixup,rtps,PRIORITY,optional) @$(call install_fixup,rtps,VERSION,$(RTPS_VERSION)) @$(call install_fixup,rtps,SECTION,base) @$(call install_fixup,rtps,AUTHOR,"Marc Kleine-Budde ") @$(call install_fixup,rtps,DEPENDS,) @$(call install_fixup,rtps,DESCRIPTION,missing) @$(call install_alternative, rtps, 0, 0, 0755, /bin/rtps) @$(call install_finish,rtps) @$(call touch) # vim: syntax=make