source: rtems/cpukit/libmisc/capture/Makefile.am @ e604ab6

4.104.114.84.95
Last change on this file since e604ab6 was 5a8a05b, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/24/03 at 12:05:44

2002-01-24 Ralf Corsepius <corsepiu@…>

  • configure.ac: Add check for weak function attribute. Remove AM_CONDITIONAL([RTEMS_LIBSHELL]. Add AM_CONDITIONAL(LIBSHELL), AM_CONDITIONAL(LIBSERDBG).
  • capture/Makefile.am: Use *.a instead of *-tmp.a.
  • cpuuse/Makefile.am: Use *.a instead of *-tmp.a.
  • devnull/Makefile.am: Use *.a instead of *-tmp.a.
  • dummy/Makefile.am: Use *.a instead of *-tmp.a.
  • dumpbuf/Makefile.am: Use *.a instead of *-tmp.a.
  • monitor/Makefile.am: Use *.a instead of *-tmp.a.
  • mw-fb/Makefile.am: Use *.a instead of *-tmp.a.
  • rtmonuse/Makefile.am: Use *.a instead of *-tmp.a.
  • serdbg/Makefile.am: Use *.a instead of *-tmp.a. Build iff LIBSERDBG is true.
  • shell/Makefile.am: Use *.a instead of *-tmp.a. Build iff LIBSHELL is true.
  • stackchk/Makefile.am: Use *.a instead of *-tmp.a.
  • untar/Makefile.am: Use *.a instead of *-tmp.a.
  • wrapup/Makefile.am: Reflect changes above.
  • Property mode set to 100644
File size: 764 bytes
Line 
1##
2## $Id$
3##
4
5include_rtemsdir = $(includedir)/rtems
6
7LIBNAME = libcapture
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.