source: rtems/c/src/exec/sapi/include/rtems/Makefile.in @ 5428b106

4.104.114.84.95
Last change on this file since 5428b106 was 5428b106, checked in by Joel Sherrill <joel.sherrill@…>, on 12/15/98 at 23:40:53

More automake preparation changes from Ralf Corsepius
<corsepiu@…>.

  • Property mode set to 100644
File size: 947 bytes
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7VPATH = @srcdir@
8RTEMS_ROOT = @top_srcdir@
9PROJECT_ROOT = @PROJECT_ROOT@
10
11H_PIECES= config directives extension fatal init io mptables
12H_FILES=$(H_PIECES:%=$(srcdir)/%.h)
13
14SRCS=$(H_FILES)
15
16include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
17include $(RTEMS_ROOT)/make/leaf.cfg
18
19#
20# Add your list of files to delete here.  The config files
21#  already know how to delete some stuff, so you may want
22#  to just run 'make clean' first to see what gets missed.
23#  'make clobber' already includes 'make clean'
24#
25
26CLEAN_ADDITIONS +=
27CLOBBER_ADDITIONS +=
28
29all:    $(SRCS) $(ARCH) $(PROJECT_INCLUDE)/rtems/sptables.h
30        $(INSTALL) -m 444 ${H_FILES} $(PROJECT_INCLUDE)/rtems/
31
32$(PROJECT_INCLUDE)/rtems/sptables.h: $(ARCH)/sptables.h-tmp
33        $(INSTALL) -m 444 $(ARCH)/sptables.h-tmp $@
34
35$(ARCH)/sptables.h-tmp: $(srcdir)/sptables.h
36        $(SED) -e 's?REPLACE_THIS_WITH_THE_BSP?$(RTEMS_BSP)?' \
37            < $< >$(ARCH)/sptables.h-tmp
38
Note: See TracBrowser for help on using the repository browser.