Changeset 41f7564 in mainline for boot/Makefile
- Timestamp:
- 2006-07-17T00:53:53Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 231fcb2
- Parents:
- 41c4444
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile
r41c4444 r41f7564 30 30 # 31 31 32 -include ../version 32 33 -include Makefile.config 33 34 34 ## Common flags35 ## Paths 35 36 # 36 37 … … 38 39 KERNELDIR = $(BASE)/kernel 39 40 USPACEDIR = $(BASE)/uspace 40 41 ## Setup arch configuration42 #43 44 -include arch/$(ARCH)/Makefile.inc45 46 ifeq ($(ARCH),xen32)47 UARCH = ia3248 else49 UARCH = $(ARCH)50 endif51 41 52 42 ifeq ($(CONFIG_DEBUG),y) … … 58 48 endif 59 49 60 .PHONY: all build config distclean arch_distclean clean kernel uspace clean_kernel clean_uspace distclean_kernel distclean_uspace50 .PHONY: all build config distclean clean generic_clean 61 51 62 52 all: 63 tools/config.py default 64 $(MAKE) -C . build $(ARCH) 53 ../tools/config.py boot.config default $(ARCH) $(COMPILER) $(CONFIG_DEBUG) $(IMAGE) 54 $(MAKE) -C . build 55 56 -include arch/$(ARCH)/Makefile.inc 65 57 66 58 config: 67 tools/config.py59 ../tools/config.py boot.config 68 60 69 distclean: clean arch_distclean61 distclean: clean 70 62 -rm Makefile.config 71 63 72 kernel: 73 $(MAKE) -C $(KERNELDIR) NARCH=$(ARCH) 74 75 uspace: 76 $(MAKE) -C $(USPACEDIR) NARCH=$(UARCH) 77 78 clean_kernel: 79 $(MAKE) -C $(KERNELDIR) clean ARCH=$(ARCH) 80 81 clean_uspace: 82 $(MAKE) -C $(USPACEDIR) clean ARCH=$(UARCH) 83 84 clean_boot_gen: 64 generic_clean: 85 65 -rm generic/*.o genarch/*.o 86 87 distclean_kernel:88 $(MAKE) -C $(KERNELDIR) distclean ARCH=$(ARCH)89 90 distclean_uspace:91 $(MAKE) -C $(USPACEDIR) distclean ARCH=$(UARCH)
Note:
See TracChangeset
for help on using the changeset viewer.