source: rtems/c/src/exec/score/include/rtems/score/Makefile.in @ a2016b99

4.104.114.84.95
Last change on this file since a2016b99 was a2016b99, checked in by Joel Sherrill <joel.sherrill@…>, on 10/08/97 at 14:42:08

Removed include directory at "build" point and the link of this directory
to lib/include.

Went to using a PROJECT_INCLUDE variable.

  • Property mode set to 100644
File size: 1.3 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8VPATH=@srcdir@
9
10# H_FILES that get installed in the rtems/score subdirectoy
11H_PIECES= address apiext bitfield chain context copyrt coremsg coremutex \
12    coresem heap interr isr mpci mppkt object objectmp \
13    priority stack states sysstate thread threadmp threadq \
14    tod tqdata userext watchdog wkspace
15H_FILES=$(H_PIECES:%=$(srcdir)/%.h)
16
17# H_FILES that get installed in the rtems subdirectoy
18SAPI_H_PIECES=debug system
19SAPI_H_FILES=$(SAPI_H_PIECES:%=$(srcdir)/%.h)
20
21# H_FILES that get installed at the top level
22EXTERNAL_H_PIECES =
23EXTERNAL_H_FILES=$(EXTERNAL_H_PIECES:%=$(srcdir)/%.h)
24
25NET_H_PIECES = in
26NET_H_FILES=$(NET_H_PIECES:%=$(srcdir)/%.h)
27
28SRCS=$(H_FILES) $(SAPI_H_FILES) $(EXTERNAL_H_FILES)
29
30include $(RTEMS_CUSTOM)
31include $(PROJECT_ROOT)/make/leaf.cfg
32
33#
34# Add your list of files to delete here.  The config files
35#  already know how to delete some stuff, so you may want
36#  to just run 'make clean' first to see what gets missed.
37#  'make clobber' already includes 'make clean'
38#
39
40CLEAN_ADDITIONS +=
41CLOBBER_ADDITIONS +=
42
43all:    $(SRCS)
44        $(INSTALL) -m 444 ${H_FILES} $(PROJECT_INCLUDE)/rtems/score
45        $(INSTALL) -m 444 ${SAPI_H_FILES} $(PROJECT_INCLUDE)/rtems/
46        $(INSTALL) -m 444 ${NET_H_FILES} $(PROJECT_INCLUDE)/netinet
47#       $(INSTALL) -m 444 ${EXTERNAL_H_FILES} $(PROJECT_INCLUDE)
Note: See TracBrowser for help on using the repository browser.