source: rtems/c/src/exec/rtems/src/Makefile.in @ ff0b008

4.104.114.84.95
Last change on this file since ff0b008 was ff0b008, checked in by Joel Sherrill <joel.sherrill@…>, on 08/24/98 at 14:50:00

Added RTEMS_INSIDE macro to insure that ".inl" files are ALWAYS included
when building the executive source.

  • Property mode set to 100644
File size: 867 bytes
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7VPATH = @srcdir@
8RTEMS_ROOT = @top_srcdir@
9PROJECT_ROOT = @PROJECT_ROOT@
10
11C_PIECES=attr clock dpmem event eventmp intr intrbody mp msg msgmp \
12   part partmp ratemon region regionmp sem semmp signal signalmp \
13   taskmp tasks timer
14C_FILES=$(C_PIECES:%=%.c)
15C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
16
17SRCS=$(C_FILES)
18OBJS=$(C_O_FILES)
19
20include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
21include $(RTEMS_ROOT)/make/lib.cfg
22
23#
24# Add local stuff here using +=
25#
26
27DEFINES  += -D__RTEMS_INSIDE__
28CPPFLAGS +=
29CFLAGS   += $(CFLAGS_OS_V)
30
31#
32# Add your list of files to delete here.  The config files
33#  already know how to delete some stuff, so you may want
34#  to just run 'make clean' first to see what gets missed.
35#  'make clobber' already includes 'make clean'
36#
37
38CLEAN_ADDITIONS +=
39CLOBBER_ADDITIONS +=
40
41all:    ${ARCH} $(SRCS) ${OBJS}
Note: See TracBrowser for help on using the repository browser.