summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/sparc/syscall
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-01-18 07:00:07 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-01-18 07:00:07 +0000
commit0cf9970b442d0f22de92ea06acf78b1632b51bbb (patch)
tree270edb36126823607202d4c8da0bf150aeadc4c6 /c/src/lib/libcpu/sparc/syscall
parent2004-01-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-0cf9970b442d0f22de92ea06acf78b1632b51bbb.tar.bz2
2004-01-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* syscall/Makefile.am: Remove. * reg_win/Makefile.am: Remove. * cache/Makefile.am: Remove. * Makefile.am: Merge-in Makefile.ams above. Use automake compilation rules. * configure.ac: Reflect changes above. Add subdir-objects to AUTOMAKE_OPTIONS. Require automake >= 1.8.2.
Diffstat (limited to 'c/src/lib/libcpu/sparc/syscall')
-rw-r--r--c/src/lib/libcpu/sparc/syscall/Makefile.am33
1 files changed, 0 insertions, 33 deletions
diff --git a/c/src/lib/libcpu/sparc/syscall/Makefile.am b/c/src/lib/libcpu/sparc/syscall/Makefile.am
deleted file mode 100644
index 8c2a1ae4cb..0000000000
--- a/c/src/lib/libcpu/sparc/syscall/Makefile.am
+++ /dev/null
@@ -1,33 +0,0 @@
-##
-## $Id$
-##
-
-PGM = $(ARCH)/syscall.rel
-
-## Assembly sources
-S_FILES = syscall.S
-
-noinst_HEADERS = syscall.h
-
-syscall_rel_OBJECTS = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
-
-include $(top_srcdir)/../../../automake/compile.am
-include $(top_srcdir)/../../../automake/lib.am
-
-#
-# (OPTIONAL) Add local stuff here using +=
-#
-
-$(PGM): $(syscall_rel_OBJECTS)
- $(make-rel)
-
-# the .rel file built here will be put into libbsp.a by
-# libbsp/sparc/BSP/wrapup/Makefile
-
-all-local: $(syscall_rel_OBJECTS) $(PGM)
-
-.PRECIOUS: $(PGM)
-
-EXTRA_DIST = syscall.S syscall.h
-
-include $(top_srcdir)/../../../automake/local.am