summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-20 20:22:13 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-20 20:22:13 +0000
commite1714506671d63a668e729e501808d173ac5d291 (patch)
tree517b6cd056ae00de8b8f605f60eeb37325b2ef09 /scripts
parentMiscellaneous improvements and cleanups committed so I can merge (diff)
downloadrtems-e1714506671d63a668e729e501808d173ac5d291.tar.bz2
New file.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/rtems/Makefile.am50
1 files changed, 50 insertions, 0 deletions
diff --git a/scripts/rtems/Makefile.am b/scripts/rtems/Makefile.am
new file mode 100644
index 0000000000..9b8c541144
--- /dev/null
+++ b/scripts/rtems/Makefile.am
@@ -0,0 +1,50 @@
+AUTOMAKE_OPTIONS = foreign
+
+MKBSPSPEC = $(SHELL) $(top_srcdir)/mkbspspec
+
+MKBSPSPEC_DEPS = ../mkbspspec rtems.spec.in ../setup.cache
+
+i386-rtems-$(BSPVERS).spec: $(MKBSPSPEC_DEPS)
+ $(MKBSPSPEC) -cfg ../setup.cache -o . i386-rtems
+
+sh-rtems-$(BSPVERS).spec: $(MKBSPSPEC_DEPS)
+ $(MKBSPSPEC) -cfg ../setup.cache -o . sh-rtems
+
+powerpc-rtems-$(BSPVERS).spec: $(MKBSPSPEC_DEPS)
+ $(MKBSPSPEC) -cfg ../setup.cache -o . powerpc-rtems
+
+sparc-rtems-$(BSPVERS).spec: $(MKBSPSPEC_DEPS)
+ $(MKBSPSPEC) -cfg ../setup.cache -o . sparc-rtems
+
+m68k-rtems-$(BSPVERS).spec: $(MKBSPSPEC_DEPS)
+ $(MKBSPSPEC) -cfg ../setup.cache -o . m68k-rtems
+
+mips64orion-rtems-$(BSPVERS).spec: $(MKBSPSPEC_DEPS)
+ $(MKBSPSPEC) -cfg ../setup.cache -o . mips64orion-rtems
+
+i960-rtems-$(BSPVERS).spec: $(MKBSPSPEC_DEPS)
+ $(MKBSPSPEC) -cfg ../setup.cache -o . i960-rtems
+
+hppa1.1-rtems-$(BSPVERS).spec: $(MKBSPSPEC_DEPS)
+ $(MKBSPSPEC) -cfg ../setup.cache -o . hppa1.1-rtems
+
+TEMPLATES = \
+rtems.spec.in
+
+RPM_SPECS_DATA = \
+i386-rtems-$(BSPVERS).spec \
+sh-rtems-$(BSPVERS).spec \
+powerpc-rtems-$(BSPVERS).spec \
+sparc-rtems-$(BSPVERS).spec \
+m68k-rtems-$(BSPVERS).spec \
+mips64orion-rtems-$(BSPVERS).spec \
+i960-rtems-$(BSPVERS).spec \
+hppa1.1-rtems-$(BSPVERS).spec
+
+noinst_DATA = \
+$(TEMPLATES)
+
+EXTRA_DIST = \
+$(TEMPLATES)
+
+CLEANFILES = $(RPM_SPECS_DATA)