source: rtems/c/src/exec/score/inline/Makefile.in @ 283d7285

4.104.114.84.95
Last change on this file since 283d7285 was 283d7285, checked in by Joel Sherrill <joel.sherrill@…>, on 12/16/98 at 00:01:08

Patch from Ralf Corsepius <corsepiu@…> heading toward
automake:

Notes:

  • I didn't yet touch the cpu subdirectory. I still need some time to think on how to handle them.
  • I probably will wait for the next snapshot before mailing more patches (I still have some pending), giving you a chance to apply them and me a chance to become target of the bullets which will probably be aimed at me after these modifications.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7VPATH = @srcdir@
8RTEMS_ROOT = @top_srcdir@
9PROJECT_ROOT = @PROJECT_ROOT@
10
11include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
12include $(RTEMS_ROOT)/make/directory.cfg
13
14SUB_DIRS=rtems
15#
16#  $Id$
17#
18
19@SET_MAKE@
20srcdir = @srcdir@
21VPATH = @srcdir@
22RTEMS_ROOT = @top_srcdir@
23PROJECT_ROOT = @PROJECT_ROOT@
24
25# We only build multiprocessing related files if HAS_MP was defined
26MP_PIECES_yes_V = mppkt objectmp threadmp
27MP_PIECES = $(MP_PIECES_$(HAS_MP)_V)
28
29I_PIECES= address chain coremsg coremutex coresem heap \
30    isr object priority stack states sysstate thread \
31    tod tqdata userext watchdog wkspace $(MP_PIECES)
32I_FILES=$(I_PIECES:%=$(srcdir)/%.inl)
33
34SRCS=$(I_FILES)
35
36include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
37include $(RTEMS_ROOT)/make/lib.cfg
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
46CLEAN_ADDITIONS += $(LIB)
47CLOBBER_ADDITIONS +=
48
49all:    $(SRCS)
50        $(INSTALL) -m 444 ${I_FILES} $(PROJECT_INCLUDE)/rtems/score
Note: See TracBrowser for help on using the repository browser.