source: rtems/cpukit/libmisc/rtmonuse/Makefile.am @ 006fa1ef

4.104.114.84.95
Last change on this file since 006fa1ef was 0fa54a0b, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/20/03 at 07:38:31

2003-11-20 Ralf Corsepius <corsepiu@…>

  • capture/config.h: Remove.
  • capture/Makefile.am: Remove config.h. AM_CPPFLAGS += -I$(top_builddir).
  • cpuuse/config.h: Remove.
  • cpuuse/Makefile.am: Remove config.h. AM_CPPFLAGS += -I$(top_builddir).
  • devnull/config.h: Remove.
  • devnull/Makefile.am: Remove config.h. AM_CPPFLAGS += -I$(top_builddir).
  • dummy/config.h: Remove.
  • dummy/Makefile.am: Remove config.h. AM_CPPFLAGS += -I$(top_builddir).
  • dumpbuf/config.h: Remove.
  • dumpbuf/Makefile.am: Remove config.h. AM_CPPFLAGS += -I$(top_builddir).
  • monitor/config.h: Remove.
  • monitor/Makefile.am: Remove config.h. AM_CPPFLAGS += -I$(top_builddir).
  • mw-fb/config.h: Remove.
  • mw-fb/Makefile.am: Remove config.h. AM_CPPFLAGS += -I$(top_builddir).
  • rtmonuse/config.h: Remove.
  • rtmonuse/Makefile.am: Remove config.h. AM_CPPFLAGS += -I$(top_builddir).
  • serdbg/config.h: Remove.
  • serdbg/Makefile.am: Remove config.h. AM_CPPFLAGS += -I$(top_builddir).
  • shell/config.h: Remove.
  • shell/Makefile.am: Remove config.h. AM_CPPFLAGS += -I$(top_builddir).
  • stackchk/config.h: Remove.
  • stackchk/Makefile.am: Remove config.h. AM_CPPFLAGS += -I$(top_builddir).
  • untar/config.h: Remove.
  • untar/Makefile.am: Remove config.h. AM_CPPFLAGS += -I$(top_builddir).
  • Property mode set to 100644
File size: 745 bytes
Line 
1##
2## $Id$
3##
4
5
6include_rtemsdir = $(includedir)/rtems
7
8LIBNAME = librtmonuse
9LIB = $(ARCH)/$(LIBNAME).a
10
11C_FILES = rtmonuse.c
12OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
13
14include_rtems_HEADERS = rtmonuse.h
15
16include $(top_srcdir)/automake/compile.am
17include $(top_srcdir)/automake/lib.am
18
19AM_CPPFLAGS += -I$(top_builddir)
20
21$(PROJECT_INCLUDE)/rtems:
22        @$(mkinstalldirs) $@
23$(PROJECT_INCLUDE)/rtems/%.h: %.h
24        $(INSTALL_DATA) $< $@
25
26#
27# (OPTIONAL) Add local stuff here using +=
28#
29
30$(LIB): $(OBJS)
31        $(make-library)
32
33PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems \
34    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
35
36all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
37
38.PRECIOUS: $(LIB)
39
40EXTRA_DIST = rtmonuse.c
41
42include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.