source: rtems/c/src/librtems++/src/Makefile.in @ e49d7c3

4.104.114.84.95
Last change on this file since e49d7c3 was e49d7c3, checked in by Joel Sherrill <joel.sherrill@…>, on 08/30/99 at 15:02:20

Removed definition of NO_IMPLICIT_EXTERN_C since it is supposed to be
in the compiler not in the header file.

  • Property mode set to 100644
File size: 1.3 KB
RevLine 
[0074691a]1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
[d8ff793]7top_srcdir = @top_srcdir@
[6693a68]8top_builddir = ..
9subdir = librtems++
[0074691a]10
[6693a68]11RTEMS_ROOT = @RTEMS_ROOT@
[d8ff793]12PROJECT_ROOT = @PROJECT_ROOT@
13
14VPATH = @srcdir@
15
[6693a68]16LIBNAME = librtems++.a
17LIB = ${ARCH}/${LIBNAME}
[0074691a]18
19# C and C++ source names, if any, go here -- minus the .c or .cc
[6693a68]20CC_PIECES = rtemsEvent rtemsInterrupt rtemsMessageQueue rtemsSemaphore \
21    rtemsStatusCode rtemsTask rtemsTimer
22CC_FILES = $(CC_PIECES:%=%.cc)
23CC_O_FILES = $(CC_PIECES:%=${ARCH}/%.o)
[0074691a]24
[6693a68]25SRCS = $(CC_FILES)
26OBJS = $(CC_O_FILES)
[0074691a]27
[6693a68]28include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
[cb5bfe4]29include $(RTEMS_ROOT)/make/lib.cfg
[0074691a]30
[6693a68]31INSTALL_CHANGE = @INSTALL_CHANGE@
32
[0074691a]33#
34# Add local stuff here using +=
35#
36
[e49d7c3]37DEFINES +=
[0074691a]38CPPFLAGS +=
[6693a68]39CFLAGS += $(LIBC_DEFINES)
[0074691a]40
41#
42# Add your list of files to delete here.  The config files
43#  already know how to delete some stuff, so you may want
44#  to just run 'make clean' first to see what gets missed.
45#  'make clobber' already includes 'make clean'
46#
47
48CLEAN_ADDITIONS += $(LIB)
49CLOBBER_ADDITIONS +=
50
[6693a68]51all: ${ARCH} $(LIB)
52        @$(INSTALL_VARIANT) -m 644 ${LIB} $(PROJECT_RELEASE)/lib
[0074691a]53
54$(LIB): $(SRCS) ${OBJS}
55        $(make-library)
56
[08b5f55]57Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
[d8ff793]58        cd $(top_builddir) \
59         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
Note: See TracBrowser for help on using the repository browser.