Changeset 62
- Timestamp:
- Jun 26, 2017, 5:06:05 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 1 edited
- 23 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r58 r62 60 60 BOOT_INCLUDE = -Itools/bootloader_tsar \ 61 61 -Itools/arch_info \ 62 -Ihal/tsar_mips32 62 -Ihal/tsar_mips32/core \ 63 63 -I. 64 64 … … 207 207 -Itools/arch_info \ 208 208 -Ihal/generic \ 209 -Ihal/tsar_mips32 209 -Ihal/tsar_mips32/core \ 210 210 -I. 211 211 … … 302 302 tools/bootloader_tsar/boot_utils.h \ 303 303 tools/bootloader_tsar/boot_config.h \ 304 hal/tsar_mips32/ hal_types.h\304 hal/tsar_mips32/core/hal_types.h \ 305 305 hard_config.h 306 306 $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $< … … 311 311 tools/bootloader_tsar/boot_utils.h \ 312 312 tools/bootloader_tsar/boot_config.h \ 313 hal/tsar_mips32/ hal_types.h\313 hal/tsar_mips32/core/hal_types.h \ 314 314 hard_config.h 315 315 $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $< … … 320 320 tools/bootloader_tsar/boot_utils.h \ 321 321 tools/bootloader_tsar/boot_config.h \ 322 hal/tsar_mips32/ hal_types.h\322 hal/tsar_mips32/core/hal_types.h \ 323 323 hard_config.h 324 324 $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $< … … 329 329 tools/bootloader_tsar/boot_utils.h \ 330 330 tools/bootloader_tsar/boot_config.h \ 331 hal/tsar_mips32/ hal_types.h\331 hal/tsar_mips32/core/hal_types.h \ 332 332 hard_config.h 333 333 $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $< … … 340 340 tools/bootloader_tsar/boot_utils.h \ 341 341 tools/bootloader_tsar/boot_config.h \ 342 hal/tsar_mips32/ hal_types.h\342 hal/tsar_mips32/core/hal_types.h \ 343 343 hard_config.h 344 344 $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $< … … 350 350 tools/bootloader_tsar/boot_utils.h \ 351 351 tools/bootloader_tsar/boot_tty_driver.h \ 352 hal/tsar_mips32/ hal_types.h\352 hal/tsar_mips32/core/hal_types.h \ 353 353 hard_config.h 354 354 $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $< … … 365 365 tools/bootloader_tsar/boot_mmc_driver.h \ 366 366 tools/bootloader_tsar/boot_config.h \ 367 hal/tsar_mips32/ hal_types.h\367 hal/tsar_mips32/core/hal_types.h \ 368 368 hard_config.h 369 369 $(CC) $(BOOT_INCLUDE) $(CFLAGS) $(MACROS) -c -o $@ $< … … 392 392 kernel/drivers/soclib/%.h \ 393 393 kernel_config.h \ 394 hal/tsar_mips32/ hal_types.h394 hal/tsar_mips32/core/hal_types.h 395 395 $(CC) $(KERNEL_INCLUDE) $(CFLAGS) -c -o $@ $< 396 396 $(DU) -D $@ > $@.txt … … 401 401 kernel/kern/%.h \ 402 402 kernel_config.h \ 403 hal/tsar_mips32/ hal_types.h403 hal/tsar_mips32/core/hal_types.h 404 404 $(CC) $(KERNEL_INCLUDE) $(CFLAGS) -c -o $@ $< 405 405 $(DU) -D $@ > $@.txt … … 407 407 ###################################### 408 408 # Rules to generate kernel/hal objects 409 build/kernel/hal/%.o: hal/tsar_mips32/ %.c\409 build/kernel/hal/%.o: hal/tsar_mips32/core/%.c \ 410 410 hal/generic/%.h \ 411 411 kernel_config.h \ 412 hal/tsar_mips32/ hal_types.h413 $(CC) $(KERNEL_INCLUDE) $(CFLAGS) -c -o $@ $< 414 $(DU) -D $@ > $@.txt 415 416 build/kernel/hal/hal_kentry.o: hal/tsar_mips32/ hal_kentry.S \417 hal/tsar_mips32/ hal_kentry.h \412 hal/tsar_mips32/core/hal_types.h 413 $(CC) $(KERNEL_INCLUDE) $(CFLAGS) -c -o $@ $< 414 $(DU) -D $@ > $@.txt 415 416 build/kernel/hal/hal_kentry.o: hal/tsar_mips32/core/hal_kentry.S \ 417 hal/tsar_mips32/core/hal_kentry.h \ 418 418 kernel_config.h \ 419 hal/tsar_mips32/ hal_types.h419 hal/tsar_mips32/core/hal_types.h 420 420 $(CC) $(KERNEL_INCLUDE) $(CFLAGS) -c -o $@ $< 421 421 $(DU) -D $@ > $@.txt … … 426 426 kernel/devices/%.h \ 427 427 kernel_config.h \ 428 hal/tsar_mips32/ hal_types.h428 hal/tsar_mips32/core/hal_types.h 429 429 $(CC) $(KERNEL_INCLUDE) $(CFLAGS) -c -o $@ $< 430 430 $(DU) -D $@ > $@.txt … … 435 435 kernel/mm/%.h \ 436 436 kernel_config.h \ 437 hal/tsar_mips32/ hal_types.h437 hal/tsar_mips32/core/hal_types.h 438 438 $(CC) $(KERNEL_INCLUDE) $(CFLAGS) -c -o $@ $< 439 439 $(DU) -D $@ > $@.txt … … 444 444 kernel/libk/%.h \ 445 445 kernel_config.h \ 446 hal/tsar_mips32/ hal_types.h446 hal/tsar_mips32/core/hal_types.h 447 447 $(CC) $(KERNEL_INCLUDE) $(CFLAGS) -c -o $@ $< 448 448 $(DU) -D $@ > $@.txt … … 453 453 kernel/syscalls/syscalls.h \ 454 454 kernel_config.h \ 455 hal/tsar_mips32/ hal_types.h455 hal/tsar_mips32/core/hal_types.h 456 456 $(CC) $(KERNEL_INCLUDE) $(CFLAGS) -c -o $@ $< 457 457 $(DU) -D $@ > $@.txt … … 462 462 kernel/vfs/%.h \ 463 463 kernel_config.h \ 464 hal/tsar_mips32/ hal_types.h464 hal/tsar_mips32/core/hal_types.h 465 465 $(CC) $(KERNEL_INCLUDE) $(CFLAGS) -c -o $@ $< 466 466 $(DU) -D $@ > $@.txt
Note: See TracChangeset
for help on using the changeset viewer.