source: rtems/c/src/lib/libcpu/sh/sh7032/include/Makefile.in @ cf59d56b

4.104.114.84.95
Last change on this file since cf59d56b was cf59d56b, checked in by Joel Sherrill <joel.sherrill@…>, on 04/27/98 at 14:19:25

Fix from Ralf Corsepius:

use a wildcard rule instead of explicit listing all include files
(I have more libcpu header files than the public version has. This patch
removes the need to patch this Makefile for my private bsps)

  • Property mode set to 100644
File size: 618 bytes
RevLine 
[f8b27df9]1#
2# $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7VPATH=@srcdir@
8RTEMS_ROOT = @top_srcdir@
9PROJECT_ROOT = @PROJECT_ROOT@
10
[cf59d56b]11H_FILES = $(wildcard $(srcdir)/*.h)
[f8b27df9]12
13SRCS=$(H_FILES)
14
15include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
16include $(RTEMS_ROOT)/make/leaf.cfg
17
18CLEAN_ADDITIONS +=
19CLOBBER_ADDITIONS +=
20
21all:    install
22
23# NOTE: Unlike other CPUS, we install into a subdirectory to avoid
24#       file name conflicts
25
26install:
27        test -d $(PROJECT_INCLUDE)/sh || $(MKDIR) $(PROJECT_INCLUDE)/sh
28        $(INSTALL) -m 444 $(H_FILES) $(PROJECT_INCLUDE)/sh
29
30all: FORCEIT
31        cd ../../../../libbsp/$(RTEMS_CPU)/$(RTEMS_BSP)/include; $(MAKE) all
Note: See TracBrowser for help on using the repository browser.