I didn't realize the generated headers are re-used elsewhere and located like

that. But I didn't think of any better solution either... Hopefully these are
all, but I will find out once I built a complete image.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33641 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus
2009-10-18 19:20:10 +00:00
parent 55b42c2b4d
commit 16e2755608
4 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -16,7 +16,7 @@ KernelAddon pci :
# pci_info.cpp currently needs pcihdr.h so we make its path available and adds dependency
ObjectHdrs [ FGristFiles pci_info$(SUFOBJ) ]
: [ FDirName $(TARGET_COMMON_DEBUG_OBJECT_DIR) preferences devices ] ;
Includes [ FGristFiles pci_info.cpp ] : <src!preferences!devices>pcihdr.h ;
: [ FDirName $(TARGET_COMMON_DEBUG_OBJECT_DIR) apps devices ] ;
Includes [ FGristFiles pci_info.cpp ] : <src!apps!devices>pcihdr.h ;
SubInclude HAIKU_TOP src add-ons kernel bus_managers pci arch $(TARGET_ARCH) ;
@@ -19,10 +19,10 @@ KernelAddon usb_midi :
SEARCH on [ FGristFiles ring_buffer.cpp ] = [ FDirName $(HAIKU_TOP) src system kernel util ] ;
ObjectHdrs [ FGristFiles usb_midi$(SUFOBJ) ]
: [ FDirName $(TARGET_COMMON_DEBUG_OBJECT_DIR) preferences devices ] ;
: [ FDirName $(TARGET_COMMON_DEBUG_OBJECT_DIR) apps devices ] ;
Includes [ FGristFiles usb_midi.c ] :
<src!preferences!devices>usbdevs.h <src!preferences!devices>usbdevs_data.h ;
<src!apps!devices>usbdevs.h <src!apps!devices>usbdevs_data.h ;
Package haiku-usbmidi-cvs
:
@@ -15,5 +15,5 @@ KernelAddon pegasus :
# driver.c currently needs usbdevs.h so we make its path available and adds dependency
ObjectHdrs [ FGristFiles driver$(SUFOBJ) if_aue$(SUFOBJ) ]
: [ FDirName $(TARGET_COMMON_DEBUG_OBJECT_DIR) preferences devices ] ;
Includes [ FGristFiles driver.c if_aue.c ] : <src!preferences!devices>usbdevs.h ;
: [ FDirName $(TARGET_COMMON_DEBUG_OBJECT_DIR) apps devices ] ;
Includes [ FGristFiles driver.c if_aue.c ] : <src!apps!devices>usbdevs.h ;
+2 -2
View File
@@ -11,5 +11,5 @@ BinCommand listdev :
;
ObjectHdrs [ FGristFiles listdev$(SUFOBJ) ]
: [ FDirName $(TARGET_COMMON_DEBUG_OBJECT_DIR) preferences devices ] ;
Includes [ FGristFiles listdev.c ] : <src!preferences!devices>pcihdr.h ;
: [ FDirName $(TARGET_COMMON_DEBUG_OBJECT_DIR) apps devices ] ;
Includes [ FGristFiles listdev.c ] : <src!apps!devices>pcihdr.h ;