summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-11-14 12:13:26 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-11-14 12:13:26 +0000
commit22b689b274c0d2ac2369e7969055dede3e0907cf (patch)
treea24b9226247ce73f5fa23ab3c4729ce7854dc108 /cpukit/libmisc/shell
parent2002-11-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-22b689b274c0d2ac2369e7969055dede3e0907cf.tar.bz2
2002-11-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* capture/Makefile.am: Remove AUTOMAKE_OPTIONS. * serdbg/Makefile.am: Remove AUTOMAKE_OPTIONS. * serdbg/serdbgio.c: Add #include <unistd.h>. * shell/Makefile.am: Add RTEMS_LIBSHELL conditional. * wrapup/Makefile.am: Add RTEMS_LIBSHELL conditional. * configure.ac: Check for stdio assignments. Add RTEMS_LIBSHELL conditional.
Diffstat (limited to 'cpukit/libmisc/shell')
-rw-r--r--cpukit/libmisc/shell/Makefile.am6
1 files changed, 5 insertions, 1 deletions
diff --git a/cpukit/libmisc/shell/Makefile.am b/cpukit/libmisc/shell/Makefile.am
index 212f3d7542..d8f5daa707 100644
--- a/cpukit/libmisc/shell/Makefile.am
+++ b/cpukit/libmisc/shell/Makefile.am
@@ -11,7 +11,9 @@ LIB = $(ARCH)/$(LIBNAME).a
C_FILES = cmds.c shell.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
+if RTEMS_LIBSHELL
include_rtems_HEADERS = shell.h
+endif
OBJS = $(C_O_FILES)
@@ -34,10 +36,12 @@ $(LIB): $(OBJS)
PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems \
$(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
+if RTEMS_LIBSHELL
all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
+endif
.PRECIOUS: $(LIB)
-EXTRA_DIST = README shell.c cmds.c
+EXTRA_DIST = README shell.c cmds.c shell.h
include $(top_srcdir)/../../../automake/local.am