Changeset 547 for trunk/boot/tsar_mips32/Makefile
- Timestamp:
- Sep 21, 2018, 10:23:32 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/boot/tsar_mips32/Makefile
r457 r547 25 25 build/boot_fat32.o \ 26 26 build/boot_utils.o \ 27 build/boot_spi_utils.o \ 27 28 build/boot_entry.o \ 28 29 build/boot_tty_driver.o \ 29 30 build/boot_hba_driver.o \ 30 31 build/boot_bdv_driver.o \ 32 build/boot_spi_driver.o \ 31 33 build/boot_mmc_driver.o 32 34 … … 82 84 $(DU) -D $@ > $@.txt 83 85 86 build/boot_spi_driver.o: boot_spi_driver.c \ 87 boot_spi_driver.h \ 88 boot_utils.h \ 89 $(HAL_ARCH)/core/hal_kernel_types.h \ 90 ../../hard_config.h 91 $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $< 92 $(DU) -D $@ > $@.txt 93 84 94 build/boot_mmc_driver.o: boot_mmc_driver.c \ 85 95 boot_mmc_driver.h \ … … 87 97 boot_config.h \ 88 98 $(HAL_ARCH)/core/hal_kernel_types.h \ 99 ../../hard_config.h 100 $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $< 101 $(DU) -D $@ > $@.txt 102 103 ############################## 104 # Rule to compile boot_spi_utils.o 105 build/boot_spi_utils.o: boot_spi_utils.c \ 106 boot_spi_utils.h \ 107 $(HAL_ARCH)/core/hal_kernel_types.h \ 89 108 ../../hard_config.h 90 109 $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $< … … 116 135 build/boot.o: boot.c \ 117 136 boot_utils.h \ 137 boot_spi_utils.h \ 118 138 boot_fat32.h \ 119 139 boot_tty_driver.h \ … … 121 141 boot_bdv_driver.h \ 122 142 boot_mmc_driver.h \ 143 boot_spi_driver.h \ 123 144 boot_config.h \ 124 145 $(HAL_ARCH)/core/hal_kernel_types.h \
Note: See TracChangeset
for help on using the changeset viewer.