summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-01-24 12:05:44 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-01-24 12:05:44 +0000
commit5a8a05b2c9fce41cda685361e13a11bbf605676d (patch)
tree1bfc994310b28b708b4dbe3ef2eefa4efc473fe0 /cpukit/libmisc/shell
parent2003-01-24 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-5a8a05b2c9fce41cda685361e13a11bbf605676d.tar.bz2
2002-01-24 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Add check for weak function attribute. Remove AM_CONDITIONAL([RTEMS_LIBSHELL]. Add AM_CONDITIONAL(LIBSHELL), AM_CONDITIONAL(LIBSERDBG). * capture/Makefile.am: Use *.a instead of *-tmp.a. * cpuuse/Makefile.am: Use *.a instead of *-tmp.a. * devnull/Makefile.am: Use *.a instead of *-tmp.a. * dummy/Makefile.am: Use *.a instead of *-tmp.a. * dumpbuf/Makefile.am: Use *.a instead of *-tmp.a. * monitor/Makefile.am: Use *.a instead of *-tmp.a. * mw-fb/Makefile.am: Use *.a instead of *-tmp.a. * rtmonuse/Makefile.am: Use *.a instead of *-tmp.a. * serdbg/Makefile.am: Use *.a instead of *-tmp.a. Build iff LIBSERDBG is true. * shell/Makefile.am: Use *.a instead of *-tmp.a. Build iff LIBSHELL is true. * stackchk/Makefile.am: Use *.a instead of *-tmp.a. * untar/Makefile.am: Use *.a instead of *-tmp.a. * wrapup/Makefile.am: Reflect changes above.
Diffstat (limited to 'cpukit/libmisc/shell')
-rw-r--r--cpukit/libmisc/shell/Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/libmisc/shell/Makefile.am b/cpukit/libmisc/shell/Makefile.am
index 391a92f361..c31be9bba7 100644
--- a/cpukit/libmisc/shell/Makefile.am
+++ b/cpukit/libmisc/shell/Makefile.am
@@ -5,13 +5,13 @@
include_rtemsdir = $(includedir)/rtems
-LIBNAME = libshell-tmp
+LIBNAME = libshell
LIB = $(ARCH)/$(LIBNAME).a
C_FILES = cmds.c shell.c
OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
-if RTEMS_LIBSHELL
+if LIBSHELL
include_rtems_HEADERS = shell.h
endif
@@ -33,7 +33,7 @@ $(LIB): $(OBJS)
PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems \
$(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
-if RTEMS_LIBSHELL
+if LIBSHELL
all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
endif