source: rtems/cpukit/libmisc/serdbg/Makefile.am @ 086aae8f

4.104.114.84.95
Last change on this file since 086aae8f was 126660c5, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/12/02 at 06:09:21

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

  • configure.ac: Require autoconf-2.57+automake-1.7.2.
  • capture/Makefile.am: Eliminate C_O_FILES.
  • cpuuse/Makefile.am: Ditto.
  • devnull/Makefile.am: Ditto.
  • dummy/Makefile.am: Ditto.
  • dumpbuf/Makefile.am: Ditto.
  • monitor/Makefile.am: Ditto.
  • rtmonuse/Makefile.am: Ditto.
  • serdbg/Makefile.am: Ditto.
  • shell/Makefile.am: Ditto.
  • stackchk/Makefile.am: Ditto.
  • untar/Makefile.am: Ditto.
  • mw-fb/Makefile.am: Eliminate C_O_FILES. Eliminate SRCS.
  • Property mode set to 100644
File size: 904 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
11OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
12
13noinst_HEADERS =
14include_HEADERS = serdbgcnf.h serdbg.h termios_printk_cnf.h \
15                  termios_printk.h
16
17include $(top_srcdir)/../automake/compile.am
18include $(top_srcdir)/../automake/lib.am
19
20$(PROJECT_INCLUDE):
21        @$(mkinstalldirs) $@
22$(PROJECT_INCLUDE)/%.h: %.h
23        $(INSTALL_DATA) $< $@
24
25#
26# (OPTIONAL) Add local stuff here using +=
27#
28
29$(LIB): $(OBJS)
30        $(make-library)
31
32PREINSTALL_FILES = $(PROJECT_INCLUDE) \
33    $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
34
35all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
36
37.PRECIOUS: $(LIB)
38
39EXTRA_DIST = README serdbg.c serdbgio.c serdbgcnf.h serdbg.h \
40             termios_printk.c termios_printk.h termios_printk_cnf.h
41
42include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.