source: rtems/c/src/lib/libmisc/monitor/Makefile.in @ f99d4f83

4.104.114.84.95
Last change on this file since f99d4f83 was a2016b99, checked in by Joel Sherrill <joel.sherrill@…>, on 10/08/97 at 14:42:08

Removed include directory at "build" point and the link of this directory
to lib/include.

Went to using a PROJECT_INCLUDE variable.

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