source: rtems/cpukit/libmisc/shell/Makefile.am @ 52058a6b

4.104.114.84.95
Last change on this file since 52058a6b was 52058a6b, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/10/02 at 08:48:53

2002-12-10 Ralf Corsepius <corsepiu@…>

  • capture/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • cpuuse/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • devnull/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • dummy/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • dumpbuf/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • monitor/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • mw-fb/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • rtmonuse/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • serdbg/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • shell/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • stackchk/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • untar/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • Property mode set to 100644
File size: 842 bytes
Line 
1##
2## $Id$
3##
4
5
6include_rtemsdir = $(includedir)/rtems
7
8LIBNAME = libshell-tmp
9LIB = $(ARCH)/$(LIBNAME).a
10
11C_FILES = cmds.c shell.c
12C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
13
14if RTEMS_LIBSHELL
15include_rtems_HEADERS = shell.h
16endif
17
18OBJS = $(C_O_FILES)
19
20include $(top_srcdir)/../../../automake/compile.am
21include $(top_srcdir)/../../../automake/lib.am
22
23$(PROJECT_INCLUDE)/rtems:
24        @$(mkinstalldirs) $@
25$(PROJECT_INCLUDE)/rtems/%.h: %.h
26        $(INSTALL_DATA) $< $@
27
28#
29# (OPTIONAL) Add local stuff here using +=
30#
31
32$(LIB): $(OBJS)
33        $(make-library)
34
35PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems \
36    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
37
38if RTEMS_LIBSHELL
39all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
40endif
41
42.PRECIOUS: $(LIB)
43
44EXTRA_DIST = README shell.c cmds.c shell.h
45
46include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.