Changeset 270c5df5 in rtems
- Timestamp:
- 07/17/19 12:19:04 (4 years ago)
- Branches:
- 5, master
- Children:
- 6eae5860
- Parents:
- c4d89de
- git-author:
- Chris Johns <chrisj@…> (07/17/19 12:19:04)
- git-committer:
- Chris Johns <chrisj@…> (07/19/19 07:50:05)
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/make/Makefile.am
rc4d89de r270c5df5 69 69 -e "s|[@]pkgdatadir[@]|$(pkgdatadir)|" \ 70 70 -e "s|[@]RTEMS_BSP[@]|$(RTEMS_BSP)|" \ 71 -e "s|[@]RTEMS_CPU[@]|$(RTEMS_CPU)|" \ 72 -e "s|[@]RTEMS_API[@]|$(RTEMS_API)|" \ 71 73 -e "s|[@]CC[@]|$(CC)|" \ 72 74 -e "s|[@]CXX[@]|$(CXX)|" \ … … 86 88 rtems_make_compilersdir = $(rtems_makedir)/compilers 87 89 dist_rtems_make_compilers_DATA = compilers/gcc-target-default.cfg 88 -
c/src/make/Makefile.inc.in
rc4d89de r270c5df5 2 2 # BSP specific settings. To be included in application Makefiles 3 3 # 4 # This support will be removed from RTEMS. Please consider other 5 # ways to build applications. 6 # 4 7 8 RTEMS_API = @RTEMS_API@ 9 10 RTEMS_CPU = @RTEMS_CPU@ 5 11 RTEMS_BSP = @RTEMS_BSP@ 6 12 … … 16 22 SIZE_FOR_TARGET = @SIZE@ 17 23 OBJCOPY_FOR_TARGET = @OBJCOPY@ 18 19 RTEMS_API = @RTEMS_API@20 24 21 25 CC= $(CC_FOR_TARGET) … … 37 41 export OBJCOPY 38 42 39 RTEMS_ROOT = $(prefix)43 RTEMS_ROOT ?= $(prefix) 40 44 PROJECT_ROOT = $(RTEMS_ROOT) 41 45 RTEMS_CUSTOM = $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg 42 RTEMS_SHARE = $(RTEMS_ROOT)/share/rtems$(RTEMS_API)46 RTEMS_SHARE = $(RTEMS_ROOT)/share/rtems$(RTEMS_API) 43 47 44 48 RTEMS_USE_OWN_PDIR = no … … 50 54 export RTEMS_CUSTOM 51 55 export PROJECT_ROOT 52 -
make/custom/default.cfg
rc4d89de r270c5df5 6 6 # for the initial RTEMS autoconf support. Thanks. --joel) 7 7 8 include $(exec_prefix)/$(RTEMS_BSP)/make/target.cfg 8 RTEMS_TARGET = $(RTEMS_CPU)-rtems$(RTEMS_API) 9 10 include $(RTEMS_ROOT)/$(RTEMS_TARGET)/$(RTEMS_BSP)/make/target.cfg 9 11 include $(RTEMS_SHARE)/make/host.cfg 10 12 11 13 include $(RTEMS_ROOT)/make/main.cfg 12 include $( exec_prefix)/$(RTEMS_BSP)/make/bsp.cfg14 include $(RTEMS_ROOT)/$(RTEMS_TARGET)/$(RTEMS_BSP)/make/bsp.cfg 13 15 14 16 ## Target compiler config file, if any -
make/main.cfg
rc4d89de r270c5df5 17 17 # 18 18 19 PROJECT_RELEASE =$(exec_prefix)/$(RTEMS_BSP)20 PROJECT_BIN =$(PROJECT_ROOT)/bin21 PROJECT_INCLUDE =$(PROJECT_RELEASE)/lib/include19 PROJECT_RELEASE ?= $(exec_prefix)/$(RTEMS_BSP) 20 PROJECT_BIN = $(PROJECT_ROOT)/bin 21 PROJECT_INCLUDE = $(PROJECT_RELEASE)/lib/include 22 22 PROJECT_TOOLS = $(PROJECT_RELEASE)/build-tools 23 23 … … 78 78 endif 79 79 80 .PHONY: $(RECURSE_TARGETS) 80 .PHONY: $(RECURSE_TARGETS) 81 81 .PHONY: clean-generic 82 82 .PHONY: distclean-generic
Note: See TracChangeset
for help on using the changeset viewer.