- Timestamp:
- 2009-01-20T18:38:16Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 27fb3d6
- Parents:
- b1747a5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
rb1747a5 r9a0367f 37 37 ifeq ($(PLATFORM),amd64) 38 38 KARCH = amd64 39 MACHINE = opteron40 39 UARCH = amd64 41 40 BARCH = amd64 … … 112 111 113 112 all: 114 tools/config.py HelenOS.config default $(PLATFORM) $(COMPILER) $(CONFIG_DEBUG)113 tools/config.py HelenOS.config default 115 114 $(MAKE) -C . build 116 115 117 build: 118 ifneq ($(MACHINE),) 119 $(MAKE) -C kernel ARCH=$(KARCH) COMPILER=$(COMPILER) CONFIG_DEBUG=$(CONFIG_DEBUG) MACHINE=$(MACHINE) 120 else 121 $(MAKE) -C kernel ARCH=$(KARCH) COMPILER=$(COMPILER) CONFIG_DEBUG=$(CONFIG_DEBUG) 122 endif 123 $(MAKE) -C uspace ARCH=$(UARCH) COMPILER=$(COMPILER) CONFIG_DEBUG=$(CONFIG_DEBUG) 124 ifneq ($(IMAGE),) 125 $(MAKE) -C boot ARCH=$(BARCH) COMPILER=$(COMPILER) CONFIG_DEBUG=$(CONFIG_DEBUG) IMAGE=$(IMAGE) 126 else 127 $(MAKE) -C boot ARCH=$(BARCH) COMPILER=$(COMPILER) CONFIG_DEBUG=$(CONFIG_DEBUG) 128 endif 116 build: Makefile.config 117 $(MAKE) -C kernel ARCH=$(KARCH) 118 $(MAKE) -C uspace ARCH=$(UARCH) 119 $(MAKE) -C boot ARCH=$(BARCH) IMAGE=$(IMAGE) 129 120 130 config: 121 config: HelenOS.config 131 122 tools/config.py HelenOS.config 132 123 133 distclean: 134 -$(MAKE) -C kernel distclean 135 -$(MAKE) -C uspace distclean 136 -$(MAKE) -C boot distclean 124 distclean: clean 137 125 rm -f Makefile.config tools/*.pyc 138 126 139 127 clean: 140 -$(MAKE) -C kernel clean 141 -$(MAKE) -C uspace clean 142 -$(MAKE) -C boot clean 128 -$(MAKE) -C kernel clean ARCH=$(KARCH) 129 -$(MAKE) -C uspace clean ARCH=$(UARCH) 130 -$(MAKE) -C boot clean ARCH=$(BARCH) IMAGE=$(IMAGE) 143 131 144 132 cscope:
Note:
See TracChangeset
for help on using the changeset viewer.