source: rtems/cpukit/libmisc/monitor/Makefile.am @ 0fa54a0b

4.104.114.84.95
Last change on this file since 0fa54a0b 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: 1.3 KB
Line 
1##
2## $Id$
3##
4
5
6include_rtemsdir = $(includedir)/rtems
7
8LIBNAME = libmonitor
9LIB = $(ARCH)/$(LIBNAME).a
10
11# We only build multiprocessing related files if HAS_MP was defined
12MP_C_FILES = mon-mpci.c
13
14C_FILES = mon-command.c mon-symbols.c mon-prmisc.c mon-monitor.c \
15    mon-object.c mon-server.c mon-task.c mon-queue.c mon-driver.c \
16    mon-dname.c mon-itask.c mon-extension.c mon-manager.c mon-config.c
17
18OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
19if HAS_MP
20OBJS += $(MP_C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
21endif
22
23include_rtems_HEADERS = monitor.h
24
25noinst_HEADERS = symbols.h
26
27include $(top_srcdir)/automake/compile.am
28include $(top_srcdir)/automake/lib.am
29
30AM_CPPFLAGS += -I$(top_builddir)
31
32$(PROJECT_INCLUDE)/rtems:
33        $(mkinstalldirs) $@
34$(PROJECT_INCLUDE)/rtems/%.h: %.h
35        $(INSTALL_DATA) $< $@
36
37#
38# (OPTIONAL) Add local stuff here using +=
39#
40
41$(LIB): $(OBJS)
42        $(make-library)
43
44PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems \
45    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
46
47all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
48
49.PRECIOUS: $(LIB)
50
51EXTRA_DIST = README mon-command.c mon-config.c mon-dname.c mon-driver.c \
52    mon-extension.c mon-itask.c mon-manager.c mon-monitor.c mon-mpci.c \
53    mon-object.c mon-prmisc.c mon-queue.c mon-server.c mon-symbols.c \
54    mon-task.c
55
56include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.