source: rtems/cpukit/libmisc/capture/Makefile.am @ 126660c5

4.104.114.84.95
Last change on this file since 126660c5 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: 768 bytes
Line 
1##
2## $Id$
3##
4
5include_rtemsdir = $(includedir)/rtems
6
7LIBNAME = libcapture-tmp
8LIB = $(ARCH)/$(LIBNAME).a
9
10C_FILES = capture.c capture-cli.c
11OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
12
13include_rtems_HEADERS = capture.h capture-cli.h
14
15include $(top_srcdir)/../automake/compile.am
16include $(top_srcdir)/../automake/lib.am
17
18$(PROJECT_INCLUDE)/rtems:
19        @$(mkinstalldirs) $@
20$(PROJECT_INCLUDE)/rtems/%.h: %.h
21        $(INSTALL_DATA) $< $@
22
23#
24# (OPTIONAL) Add local stuff here using +=
25#
26
27$(LIB): $(OBJS)
28        $(make-library)
29
30PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems \
31    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
32
33all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
34
35.PRECIOUS: $(LIB)
36
37EXTRA_DIST = README capture.c capture-cli.c
38
39include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.