forked from Imagelibrary/rtems
* capture/Makefile.am: Don't include @RTEMS_BSP@.cfg. * cpuuse/Makefile.am: Don't include @RTEMS_BSP@.cfg. * devnull/Makefile.am: Don't include @RTEMS_BSP@.cfg. * dummy/Makefile.am: Don't include @RTEMS_BSP@.cfg. * dumpbuf/Makefile.am: Don't include @RTEMS_BSP@.cfg. * monitor/Makefile.am: Don't include @RTEMS_BSP@.cfg. * mw-fb/Makefile.am: Don't include @RTEMS_BSP@.cfg. * rtmonuse/Makefile.am: Don't include @RTEMS_BSP@.cfg. * serdbg/Makefile.am: Don't include @RTEMS_BSP@.cfg. * shell/Makefile.am: Don't include @RTEMS_BSP@.cfg. * stackchk/Makefile.am: Don't include @RTEMS_BSP@.cfg. * untar/Makefile.am: Don't include @RTEMS_BSP@.cfg. * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
56 lines
1.3 KiB
Makefile
56 lines
1.3 KiB
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
|
|
include_rtemsdir = $(includedir)/rtems
|
|
|
|
LIBNAME = libmonitor-tmp
|
|
LIB = $(ARCH)/$(LIBNAME).a
|
|
|
|
# We only build multiprocessing related files if HAS_MP was defined
|
|
MP_C_FILES = mon-mpci.c
|
|
|
|
C_FILES = mon-command.c mon-symbols.c mon-prmisc.c mon-monitor.c \
|
|
mon-object.c mon-server.c mon-task.c mon-queue.c mon-driver.c \
|
|
mon-dname.c mon-itask.c mon-extension.c mon-manager.c mon-config.c
|
|
|
|
if HAS_MP
|
|
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) $(MP_C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
|
|
else
|
|
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
|
|
endif
|
|
|
|
include_rtems_HEADERS = monitor.h symbols.h
|
|
|
|
OBJS = $(C_O_FILES)
|
|
|
|
include $(top_srcdir)/../../../automake/compile.am
|
|
include $(top_srcdir)/../../../automake/lib.am
|
|
|
|
$(PROJECT_INCLUDE)/rtems:
|
|
$(mkinstalldirs) $@
|
|
$(PROJECT_INCLUDE)/rtems/%.h: %.h
|
|
$(INSTALL_DATA) $< $@
|
|
|
|
#
|
|
# (OPTIONAL) Add local stuff here using +=
|
|
#
|
|
|
|
$(LIB): $(OBJS)
|
|
$(make-library)
|
|
|
|
PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems \
|
|
$(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
|
|
|
|
all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
|
|
|
|
.PRECIOUS: $(LIB)
|
|
|
|
EXTRA_DIST = README mon-command.c mon-config.c mon-dname.c mon-driver.c \
|
|
mon-extension.c mon-itask.c mon-manager.c mon-monitor.c mon-mpci.c \
|
|
mon-object.c mon-prmisc.c mon-queue.c mon-server.c mon-symbols.c \
|
|
mon-task.c
|
|
|
|
include $(top_srcdir)/../../../automake/local.am
|