summaryrefslogtreecommitdiffstats
path: root/rules/rtps.make
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2009-07-15 22:21:53 +0000
committerMarc Kleine-Budde <mkl@pengutronix.de>2009-07-15 22:21:53 +0000
commit530534501a61136816851d7570df8e532e355446 (patch)
treebb306bb5b7e158baff664edc045ccd6091ebbb8d /rules/rtps.make
parent57ccc1639bd1eca7f30f5874e7728edf4f0ad049 (diff)
downloadptxdist-530534501a61136816851d7570df8e532e355446.tar.gz
ptxdist-530534501a61136816851d7570df8e532e355446.tar.xz
[rtps] new packet
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@10968 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/rtps.make')
-rw-r--r--rules/rtps.make89
1 files changed, 89 insertions, 0 deletions
diff --git a/rules/rtps.make b/rules/rtps.make
new file mode 100644
index 000000000..df607d4c8
--- /dev/null
+++ b/rules/rtps.make
@@ -0,0 +1,89 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2009 by Marc Kleine-Budde <mkl@pengutronix.de>
+#
+# 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 <mkl@pengutronix.de>")
+ @$(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)
+
+# ----------------------------------------------------------------------------
+# Clean
+# ----------------------------------------------------------------------------
+
+rtps_clean:
+ rm -rf $(STATEDIR)/rtps.*
+ rm -rf $(PKGDIR)/rtps_*
+
+# vim: syntax=make