source: rtems/cpukit/libmisc/serdbg/Makefile.am @ 738a9ae

4.104.114.84.95
Last change on this file since 738a9ae was 2cc9367, checked in by Ralf Corsepius <ralf.corsepius@…>, on 07/08/03 at 10:39:58

2003-07-08 Ralf Corsepius <corsepiu@…>

  • configure.ac: Remove (Merged into ../configure.ac).
  • Makefile.am: Reflect having merged configure.ac into ../configure.ac.
  • capture/config.h: New.
  • capture/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac.
  • cpuuse/config.h: New.
  • cpuuse/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac.
  • devnull/config.h: New.
  • devnull/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac.
  • dummy/config.h: New.
  • dummy/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac.
  • dumpbuf/config.h: New.
  • dumpbuf/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac.
  • monitor/config.h: New.
  • monitor/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac.
  • mw-fb/config.h: New.
  • mw-fb/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac.
  • rtmonuse/config.h: New.
  • rtmonuse/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac.
  • serdbg/config.h: New.
  • serdbg/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac.
  • shell/config.h: New.
  • shell/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac.
  • stackchk/config.h: New.
  • stackchk/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac.
  • untar/config.h: New.
  • untar/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac.
  • wrapup/Makefile.am: Reflect having merged configure.ac into ../configure.ac.
  • Property mode set to 100644
File size: 938 bytes
Line 
1##
2## $Id$
3##
4
5include_rtemsdir = $(includedir)/rtems
6
7LIBNAME = libserdbg
8LIB = $(ARCH)/$(LIBNAME).a
9
10C_FILES = serdbg.c serdbgio.c termios_printk.c
11OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
12
13if LIBSERDBG
14include_HEADERS = serdbgcnf.h serdbg.h termios_printk_cnf.h \
15                  termios_printk.h
16endif
17
18noinst_HEADERS = config.h
19
20include $(top_srcdir)/automake/compile.am
21include $(top_srcdir)/automake/lib.am
22
23$(PROJECT_INCLUDE):
24        @$(mkinstalldirs) $@
25$(PROJECT_INCLUDE)/%.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) \
36    $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
37
38if LIBSERDBG
39all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
40endif
41
42.PRECIOUS: $(LIB)
43
44EXTRA_DIST = README serdbg.c serdbgio.c serdbgcnf.h serdbg.h \
45             termios_printk.c termios_printk.h termios_printk_cnf.h
46
47include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.