source: rtems/cpukit/libmisc/serdbg/Makefile.am @ 5e622a9

4.104.114.84.95
Last change on this file since 5e622a9 was 5e622a9, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/12/02 at 03:08:54

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

Moving libmisc from rtems/c/src to rtems/cpukit.

  • Makefile.am: Reflect new path.
  • configure.ac: Reflect new path. Use RTEMS_ENV_RTEMSCPU instead of RTEMS_ENV_RTEMSBSP. Remove RTEMS_PROJECT_ROOT.
  • capture/Makefile.am: Reflect new path. Remove OBJS from all-local.
  • cpuuse/Makefile.am: Ditto.
  • devnull/Makefile.am: Ditto.
  • dummy/Makefile.am: Ditto.
  • dumpbuf/Makefile.am: Ditto.
  • monitor/Makefile.am: Ditto.
  • mw-fb/Makefile.am: Ditto.
  • rtmonuse/Makefile.am: Ditto.
  • serdbg/Makefile.am: Ditto.
  • shell/Makefile.am: Ditto.
  • stackchk/Makefile.am: Ditto.
  • untar/Makefile.am: Ditto.
  • wrapup/Makefile.am: Reflect new path.
  • Property mode set to 100644
File size: 930 bytes
Line 
1##
2## $Id$
3##
4
5include_rtemsdir = $(includedir)/rtems
6
7LIBNAME = libserdbg-tmp
8LIB = $(ARCH)/$(LIBNAME).a
9
10C_FILES = serdbg.c serdbgio.c termios_printk.c
11C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
12
13noinst_HEADERS =
14include_HEADERS = serdbgcnf.h serdbg.h termios_printk_cnf.h \
15                  termios_printk.h
16
17OBJS = $(C_O_FILES)
18
19include $(top_srcdir)/../automake/compile.am
20include $(top_srcdir)/../automake/lib.am
21
22$(PROJECT_INCLUDE):
23        @$(mkinstalldirs) $@
24$(PROJECT_INCLUDE)/%.h: %.h
25        $(INSTALL_DATA) $< $@
26
27#
28# (OPTIONAL) Add local stuff here using +=
29#
30
31$(LIB): $(OBJS)
32        $(make-library)
33
34PREINSTALL_FILES = $(PROJECT_INCLUDE) \
35    $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
36
37all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
38
39.PRECIOUS: $(LIB)
40
41EXTRA_DIST = README serdbg.c serdbgio.c serdbgcnf.h serdbg.h \
42             termios_printk.c termios_printk.h termios_printk_cnf.h
43
44include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.