1SubDir HAIKU_TOP src system boot platform openfirmware ; 2 3SubDirC++Flags -D_BOOT_MODE -fno-rtti ; 4 5UsePrivateHeaders [ FDirName graphics common ] ; 6 7SEARCH_SOURCE += [ FDirName $(HAIKU_TOP) src add-ons accelerants common ] ; 8 9local genericPlatformSources = 10 text_menu.cpp 11 video_blit.cpp 12 video_rle.cpp 13 video_splash.cpp 14; 15 16KernelMergeObject boot_platform_openfirmware.o : 17 console.cpp 18 debug.cpp 19 devices.cpp 20 Handle.cpp 21 heap.cpp 22 menu.cpp 23 mmu.cpp 24 network.cpp 25 real_time_clock.cpp 26 start.cpp 27 support.cpp 28 video.cpp 29 30 openfirmware.cpp 31 openfirmware_devices.cpp 32 33 $(genericPlatformSources) 34 35 # VESA/DDC EDID 36 decode_edid.c 37 dump_edid.c 38 39 : 40 : boot_platform_openfirmware_$(TARGET_ARCH).a 41; 42 43SEARCH on [ FGristFiles $(genericPlatformSources) ] 44 = [ FDirName $(HAIKU_TOP) src system boot platform generic ] ; 45SEARCH on [ FGristFiles openfirmware.cpp openfirmware_devices.cpp ] 46 = [ FDirName $(HAIKU_TOP) src system kernel platform openfirmware ] ; 47 48SubInclude HAIKU_TOP src system boot platform openfirmware arch ; 49