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
RevLine 
[df49c60]1##
[70810dc]2## $Id$
[df49c60]3##
[9608320]4
5
[620e8263]6include_rtemsdir = $(includedir)/rtems
7
[5a8a05b]8LIBNAME = libmonitor
[70810dc]9LIB = $(ARCH)/$(LIBNAME).a
[9608320]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
[126660c5]18OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
[9608320]19if HAS_MP
[126660c5]20OBJS += $(MP_C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
[9608320]21endif
22
[e7f38e8]23include_rtems_HEADERS = monitor.h
[9608320]24
[0fa54a0b]25noinst_HEADERS = symbols.h
[2cc9367]26
27include $(top_srcdir)/automake/compile.am
28include $(top_srcdir)/automake/lib.am
[9608320]29
[0fa54a0b]30AM_CPPFLAGS += -I$(top_builddir)
31
[9608320]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
[70810dc]41$(LIB): $(OBJS)
[9608320]42        $(make-library)
43
[aea9bb46]44PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems \
[620e8263]45    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
[70810dc]46
[5e622a9]47all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
[70810dc]48
49.PRECIOUS: $(LIB)
[9608320]50
[70810dc]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 \
[620e8263]54    mon-task.c
[9608320]55
[2cc9367]56include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.