Changeset 623 for trunk/Makefile
- Timestamp:
- Mar 6, 2019, 4:37:15 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r610 r623 4 4 5 5 -include params-soft.mk 6 6 7 ifeq ($(ARCH_NAME),) 7 $(error Please define inARCH_NAME parameter in params-soft.mk!)8 $(error Please define ARCH_NAME parameter in params-soft.mk!) 8 9 endif 9 10 … … 56 57 MTOOLS_SKIP_CHECK := 1 57 58 58 # Rule to generate boot.elf, kernel.elf, all user.elf files, and update virtual disk. 59 ########################################################################################## 60 # Rule to generate boot.elf, kernel.elf, all user.elf files, and update the virtual disk 61 # when the corresponding sources files have been modified or destroyed. 62 # The /home directory on the virtual disk is not modified 59 63 compile: dirs \ 60 build_disk \61 64 hard_config.h \ 62 65 build_libs \ … … 68 71 user/idbg/build/idbg.elf \ 69 72 user/sort/build/sort.elf \ 70 user/fft/build/fft.elf \73 user/fft/build/fft.elf \ 71 74 list 72 75 … … 85 88 mcopy -o -i $(DISK_IMAGE) ::/home . 86 89 90 ############################################################## 87 91 # Rules to delete all binary files from Unix File System 88 92 # without modifying the virtual disk. … … 119 123 mmd -o -i $(DISK_IMAGE) ::/bin/user || true 120 124 mmd -o -i $(DISK_IMAGE) ::/home || true 121 mcopy -o -i $(DISK_IMAGE) Makefile ::/home122 125 mdir -/ -b -i $(DISK_IMAGE) ::/ 123 126 … … 125 128 # Rules to generate hardware description files (hard_config.h, 126 129 # arch_info.bin and arch_info.xml), and update the virtual disk. 127 hard_config.h: build_disk$(ARCH)/arch_info.py130 hard_config.h: $(ARCH)/arch_info.py 128 131 tools/arch_info/genarch.py --arch=$(ARCH) \ 129 132 --x_size=$(X_SIZE) \
Note: See TracChangeset
for help on using the changeset viewer.