source: rtems/c/src/exec/score/macros/rtems/score/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: 923 bytes
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7VPATH = @srcdir@
8RTEMS_ROOT = @top_srcdir@
9PROJECT_ROOT = @PROJECT_ROOT@
10
11# We only build multiprocessing related files if HAS_MP was defined
12MP_PIECES_yes_V = mppkt objectmp threadmp
13MP_PIECES = $(MP_PIECES_$(HAS_MP)_V)
14
15I_PIECES= address chain coremsg coremutex coresem heap \
16    isr object priority stack states sysstate thread \
17    tod tqdata userext watchdog wkspace $(MP_PIECES)
18I_FILES=$(I_PIECES:%=$(srcdir)/%.inl)
19
20SRCS=$(I_FILES)
21
22include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
23include $(RTEMS_ROOT)/make/lib.cfg
24
25#
26# Add your list of files to delete here.  The config files
27#  already know how to delete some stuff, so you may want
28#  to just run 'make clean' first to see what gets missed.
29#  'make clobber' already includes 'make clean'
30#
31
32CLEAN_ADDITIONS += $(LIB)
33CLOBBER_ADDITIONS +=
34
35all:    $(SRCS)
36        $(INSTALL) -m 444 ${I_FILES} $(PROJECT_INCLUDE)/rtems/score
Note: See TracBrowser for help on using the repository browser.