source: rtems/c/src/exec/score/include/rtems/score/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: 1020 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 = mpci mppkt objectmp threadmp
13MP_PIECES = $(MP_PIECES_$(HAS_MP)_V)
14
15# H_FILES that get installed in the rtems/score subdirectoy
16H_PIECES= address apiext bitfield chain context copyrt coremsg coremutex \
17    coresem heap interr isr object \
18    priority stack states sysstate thread threadq \
19    tod tqdata userext watchdog wkspace
20H_FILES=$(H_PIECES:%=$(srcdir)/%.h)
21
22SRCS=$(H_FILES)
23
24include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
25include $(RTEMS_ROOT)/make/leaf.cfg
26
27#
28# Add your list of files to delete here.  The config files
29#  already know how to delete some stuff, so you may want
30#  to just run 'make clean' first to see what gets missed.
31#  'make clobber' already includes 'make clean'
32#
33
34CLEAN_ADDITIONS +=
35CLOBBER_ADDITIONS +=
36
37all:    $(SRCS)
38        $(INSTALL) -m 444 ${H_FILES} $(PROJECT_INCLUDE)/rtems/score
Note: See TracBrowser for help on using the repository browser.