source: rtems/c/src/libmisc/monitor/Makefile.in @ 97e2729d

4.104.114.84.95
Last change on this file since 97e2729d was 97e2729d, checked in by Joel Sherrill <joel.sherrill@…>, on 11/23/98 at 17:38:09

Added --disable-multiprocessing flag and modified a lot of files to make
it work.

  • Property mode set to 100644
File size: 1.4 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7VPATH = @srcdir@
8RTEMS_ROOT = @top_srcdir@
9PROJECT_ROOT = @PROJECT_ROOT@
10
11LIB=${ARCH}/libmonitor-tmp.a
12
13# C source names, if any, go here -- minus the .c
14# We only build multiprocessing related files if HAS_MP was defined
15MP_PIECES_yes_V = mon-mpci
16MP_PIECES = $(MP_PIECES_$(HAS_MP)_V)
17
18C_PIECES=mon-command mon-symbols mon-prmisc mon-monitor mon-object mon-server \
19         mon-task mon-queue mon-driver mon-dname mon-itask \
20         mon-extension mon-manager mon-config $(MP_PIECES)
21C_FILES=$(C_PIECES:%=%.c)
22C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
23
24H_FILES=
25INSTALLED_H_FILES=$(srcdir)/monitor.h $(srcdir)/symbols.h
26
27SRCS=README $(C_FILES) $(H_FILES) $(INSTALLED_H_FILES)
28OBJS=$(C_O_FILES)
29
30include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
31include $(RTEMS_ROOT)/make/lib.cfg
32
33#
34# (OPTIONAL) Add local stuff here using +=
35#
36
37DEFINES  +=
38CPPFLAGS += -I$(srcdir)
39CFLAGS   +=
40
41LD_PATHS  +=
42LD_LIBS   +=
43LDFLAGS   +=
44
45#
46# Add your list of files to delete here.  The config files
47#  already know how to delete some stuff, so you may want
48#  to just run 'make clean' first to see what gets missed.
49#  'make clobber' already includes 'make clean'
50#
51
52.PHONY: preinstall
53
54CLEAN_ADDITIONS +=
55CLOBBER_ADDITIONS +=
56
57${LIB}: ${SRCS} ${OBJS}
58        $(make-library)
59
60all:    preinstall ${ARCH} $(SRCS) $(LIB)
61
62preinstall: $(INSTALLED_H_FILES)
63        $(INSTALL) -m 444 ${INSTALLED_H_FILES} $(PROJECT_INCLUDE)/rtems
Note: See TracBrowser for help on using the repository browser.