Changeset 55258b4 in rtems
- Timestamp:
- Mar 31, 1998, 4:52:32 PM (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 9a355cb
- Parents:
- 58933e6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
make/Makefile.in
r58933e6 r55258b4 30 30 # NOTE: Use the wildcard rule to install all custom files 31 31 # CUSTOM_FILES := $(wildcard $(srcdir)/custom/*.cfg) 32 32 33 # NOTE: This should be sufficient, but may fail for some BSPS: 33 # Get all custom files for the BSP family, they may depend on eachother 34 CUSTOM_FILES := custom/default.cfg $(patsubst %,custom/%.cfg,@RTEMS_BSP_LIST@) 34 # Get all custom files for the BSP family, they may depend on each other 35 #CUSTOM_FILES := custom/default.cfg $(patsubst %,custom/%.cfg, posix) 36 37 # This version of the rule is pretty ugly but I think it works ALL the time. 38 # + Figure out what this BSP.cfg includes 39 # + Make those files have the correct relative path. 40 # + Now fix $(RTEMS_HOST) to the real host name 41 CUSTOM_FILES := custom/default.cfg custom/$(RTEMS_BSP).cfg \ 42 $(shell grep "^include.*make/custom" $(srcdir)/custom/$(RTEMS_BSP).cfg | \ 43 sed -e 's/^.*make\///' | sed -e s/\\$$\(RTEMS_HOST\)/${RTEMS_HOST}/) 35 44 36 45 # NOTE: Use the wildcard rule to install all compiler files
Note: See TracChangeset
for help on using the changeset viewer.