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