summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/armulator/console
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-01-28 21:26:39 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-01-28 21:26:39 +0000
commit9fb0a58dbfd539f9d250a0d847fb7045dedcc0bf (patch)
treeb40b40ce610685258c678f339b44a2e4098ffd38 /c/src/lib/libbsp/arm/armulator/console
parent2004-01-28 RTEMS (diff)
downloadrtems-9fb0a58dbfd539f9d250a0d847fb7045dedcc0bf.tar.bz2
2004-01-28 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am, start/Makefile.am, startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am. Use automake compilation rules. * clock/Makefile.am, console/Makefile.am, start/Makefile.am, startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am: Remove. * configure.ac: Reflect changes above.
Diffstat (limited to 'c/src/lib/libbsp/arm/armulator/console')
-rw-r--r--c/src/lib/libbsp/arm/armulator/console/Makefile.am32
1 files changed, 0 insertions, 32 deletions
diff --git a/c/src/lib/libbsp/arm/armulator/console/Makefile.am b/c/src/lib/libbsp/arm/armulator/console/Makefile.am
deleted file mode 100644
index 9667c026e9..0000000000
--- a/c/src/lib/libbsp/arm/armulator/console/Makefile.am
+++ /dev/null
@@ -1,32 +0,0 @@
-##
-## $Id$
-##
-
-VPATH = @srcdir@:@srcdir@/../../../shared
-
-PGM = $(ARCH)/console.rel
-
-C_FILES = console-io.c console-polled.c
-C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
-
-OBJS = $(C_O_FILES)
-
-include $(top_srcdir)/../../../../automake/compile.am
-include $(top_srcdir)/../../../../automake/lib.am
-
-#
-# (OPTIONAL) Add local stuff here using +=
-#
-
-$(PGM): $(OBJS)
- $(make-rel)
-
-# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
-
-all-local: $(OBJS) $(PGM)
-
-.PRECIOUS: $(PGM)
-
-EXTRA_DIST = console.c
-
-include $(top_srcdir)/../../../../automake/local.am