source: rtems/cpukit/libmisc/capture/Makefile.am @ 45e4f321

4.104.114.84.95
Last change on this file since 45e4f321 was 45e4f321, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/11/02 at 05:51:17

2002-08-11 Ralf Corsepius <corsepiu@…>

  • capture/Makefile.am: Use .$(OBJEXT) instead of .o.
    • cpuuse/Makefile.am: Use .$(OBJEXT) instead of .o.
    • devnull/Makefile.am: Use .$(OBJEXT) instead of .o.
    • dummy/Makefile.am: Use .$(OBJEXT) instead of .o.
    • dumpbuf/Makefile.am: Use .$(OBJEXT) instead of .o.
    • monitor/Makefile.am: Use .$(OBJEXT) instead of .o.
    • mw-fb/Makefile.am: Use .$(OBJEXT) instead of .o.
    • rtmonuse/Makefile.am: Use .$(OBJEXT) instead of .o.
    • serdbg/Makefile.am: Use .$(OBJEXT) instead of .o.
    • shell/Makefile.am: Use .$(OBJEXT) instead of .o.
    • stackchk/Makefile.am: Use .$(OBJEXT) instead of .o.
    • untar/Makefile.am: Use .$(OBJEXT) instead of .o.
  • Property mode set to 100644
File size: 902 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7include_rtemsdir = $(includedir)/rtems
8
9LIBNAME = libcapture-tmp
10LIB = $(ARCH)/$(LIBNAME).a
11
12C_FILES = capture.c capture-cli.c
13C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
14
15include_rtems_HEADERS = capture.h capture-cli.h
16
17OBJS = $(C_O_FILES)
18
19include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
20include $(top_srcdir)/../../../automake/compile.am
21include $(top_srcdir)/../../../automake/lib.am
22
23$(PROJECT_INCLUDE)/rtems:
24        @$(mkinstalldirs) $@
25$(PROJECT_INCLUDE)/rtems/%.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)/rtems \
36    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
37
38all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
39
40.PRECIOUS: $(LIB)
41
42EXTRA_DIST = README capture.c capture-cli.c
43
44include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.