Changeset 674c900 in rtems for c/Makefile.in
- Timestamp:
- Dec 10, 1997, 4:58:00 PM (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- d2632274
- Parents:
- f99d4f83
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/Makefile.in
rf99d4f83 r674c900 18 18 mandir = @mandir@/man$(manext) 19 19 program_prefix = @program_prefix@ 20 VPATH=@srcdir@ 20 VPATH = @srcdir@ 21 RTEMS_ROOT = @RTEMS_ROOT@ 22 PROJECT_ROOT = @PROJECT_ROOT@ 23 RTEMS_CUSTOM = $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg 21 24 22 25 include $(RTEMS_CUSTOM) … … 51 54 52 55 # Make all/install must include 'env' 56 # if something is added to TARGET_VARIANTS, then account for it here 53 57 all: env 54 $(TARGET_VARIANTS): env 55 $(TARGET_VARIANTS:%=%_install): env 56 $(TARGET_VARIANTS:%=%_all): env 58 debug: env 59 profile: env 60 61 install: all install_files 62 debug_install: env debug install_files 63 profile_install: env profile install_files 64 65 debug_all: debug 66 profile_all: profile 57 67 58 68 # top level clean/clobber will delete the install points … … 64 74 .PHONY: dirs clean_wrapup clean_dirs clean_tools clean_modules env install 65 75 66 # XXX The link is temporary while switching to -specs options.67 76 dirs: 68 77 -test -d $(PROJECT_ROOT)/c/src/lib/libhwapi && \ 69 78 (cd $(PROJECT_ROOT)/c/src/lib/libhwapi ; $(MAKE) mkdirs) 70 #-$(MKDIR) ${CREATE_DIRS:%=$(PROJECT_ROOT)/$(RTEMS_BSP)/%}71 @echo Making directories in build tree ...72 -$(foreach dir,$(CREATE_DIRS), \73 $(shell $(MKDIR) $(PROJECT_ROOT)/$(RTEMS_BSP)/$(dir)))79 -$(MKDIR) ${CREATE_DIRS:%=$(PROJECT_ROOT)/$(RTEMS_BSP)/%} 80 # @echo Making directories in build tree ... 81 # -$(foreach dir,$(CREATE_DIRS), \ 82 # $(shell $(MKDIR) $(PROJECT_ROOT)/$(RTEMS_BSP)/$(dir))) 74 83 75 84 distclean: clobber … … 83 92 # NOTE: The wildcard on the install should pick up everything except 84 93 # the tests directory. This significantly minimizes the install size. 85 install: all 94 95 96 install_files: 86 97 -$(MKDIR) $(prefix)/ 87 98 -$(MKDIR) $(prefix)/rtems
Note: See TracChangeset
for help on using the changeset viewer.