summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/unix/posix/clock
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-01-30 10:06:56 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-01-30 10:06:56 +0000
commitdd551dbf0271b5994924e48f2e6cb95fbb7a9112 (patch)
treeace16e1494e0de7163ca6ef59c6d4ef03427784c /c/src/lib/libbsp/unix/posix/clock
parent2004-01-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-dd551dbf0271b5994924e48f2e6cb95fbb7a9112.tar.bz2
2004-01-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am, shmsupp/Makefile.am, startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am. Use automake compilation rules. * clock/Makefile.am, console/Makefile.am, shmsupp/Makefile.am, startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am: Remove. * configure.ac: Reflect changes above.
Diffstat (limited to 'c/src/lib/libbsp/unix/posix/clock')
-rw-r--r--c/src/lib/libbsp/unix/posix/clock/.cvsignore2
-rw-r--r--c/src/lib/libbsp/unix/posix/clock/Makefile.am31
2 files changed, 0 insertions, 33 deletions
diff --git a/c/src/lib/libbsp/unix/posix/clock/.cvsignore b/c/src/lib/libbsp/unix/posix/clock/.cvsignore
deleted file mode 100644
index 282522db03..0000000000
--- a/c/src/lib/libbsp/unix/posix/clock/.cvsignore
+++ /dev/null
@@ -1,2 +0,0 @@
-Makefile
-Makefile.in
diff --git a/c/src/lib/libbsp/unix/posix/clock/Makefile.am b/c/src/lib/libbsp/unix/posix/clock/Makefile.am
deleted file mode 100644
index cf7b328b5c..0000000000
--- a/c/src/lib/libbsp/unix/posix/clock/Makefile.am
+++ /dev/null
@@ -1,31 +0,0 @@
-##
-## $Id$
-##
-
-PGM = $(ARCH)/clock.rel
-
-C_FILES = clock.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 = clock.c
-
-include $(top_srcdir)/../../../../automake/local.am