source: rtems/c/src/exec/score/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: 924 bytes
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7VPATH = @srcdir@
8RTEMS_ROOT = @top_srcdir@
9PROJECT_ROOT = @PROJECT_ROOT@
10
11# C and C++ source names, if any, go here -- minus the .c or .cc
12C_PIECES=apiext chain coremsg coremutex coresem heap interr \
13    isr mpci object objectmp thread threadmp threadq tod userext \
14    watchdog wkspace
15C_FILES=$(C_PIECES:%=%.c)
16C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
17
18SRCS=$(C_FILES)
19OBJS=$(C_O_FILES)
20
21include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
22include $(RTEMS_ROOT)/make/lib.cfg
23
24#
25# Add local stuff here using +=
26#
27
28DEFINES  += -D__RTEMS_INSIDE__
29CPPFLAGS +=
30CFLAGS   += $(CFLAGS_OS_V)
31
32#
33# Add your list of files to delete here.  The config files
34#  already know how to delete some stuff, so you may want
35#  to just run 'make clean' first to see what gets missed.
36#  'make clobber' already includes 'make clean'
37#
38
39CLEAN_ADDITIONS +=
40CLOBBER_ADDITIONS +=
41
42all:    ${ARCH} $(SRCS) ${OBJS}
Note: See TracBrowser for help on using the repository browser.