source: rtems/c/src/exec/score/headers/Makefile.in @ 28e7d7fa

4.104.114.84.95
Last change on this file since 28e7d7fa was 28e7d7fa, checked in by Joel Sherrill <joel.sherrill@…>, on 08/20/98 at 22:04:22

Patches from Eric Norum

  • Property mode set to 100644
File size: 1.3 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7VPATH = @srcdir@
8RTEMS_ROOT = @top_srcdir@
9PROJECT_ROOT = @PROJECT_ROOT@
10
11# H_FILES that get installed in the rtems/score subdirectoy
12H_PIECES= address apiext bitfield chain context copyrt coremsg coremutex \
13    coresem heap interr isr mpci mppkt object objectmp \
14    priority stack states sysstate thread threadmp threadq \
15    tod tqdata userext watchdog wkspace
16H_FILES=$(H_PIECES:%=$(srcdir)/%.h)
17
18# H_FILES that get installed in the rtems subdirectoy
19SAPI_H_PIECES=debug system
20SAPI_H_FILES=$(SAPI_H_PIECES:%=$(srcdir)/%.h)
21
22# H_FILES that get installed at the top level
23EXTERNAL_H_PIECES =
24EXTERNAL_H_FILES=$(EXTERNAL_H_PIECES:%=$(srcdir)/%.h)
25
26SRCS=$(H_FILES) $(SAPI_H_FILES) $(EXTERNAL_H_FILES)
27
28include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
29include $(RTEMS_ROOT)/make/leaf.cfg
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:    $(SRCS)
42        $(INSTALL) -m 444 ${H_FILES} $(PROJECT_INCLUDE)/rtems/score
43        $(INSTALL) -m 444 ${SAPI_H_FILES} $(PROJECT_INCLUDE)/rtems/
44#       $(INSTALL) -m 444 ${EXTERNAL_H_FILES} $(PROJECT_INCLUDE)
Note: See TracBrowser for help on using the repository browser.