Removed the disk scanner tests from the build.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3629 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2003-06-23 16:54:02 +00:00
parent 6ab18748f3
commit b4ec16d069

View File

@ -1,48 +1,48 @@
SubDir OBOS_TOP src tests add-ons kernel disk_scanner ; SubDir OBOS_TOP src tests add-ons kernel disk_scanner ;
UsePrivateHeaders $(DOT) ; #UsePrivateHeaders $(DOT) ;
#
# the test app # the test app
#
SEARCH_SOURCE += [ FDirName $(OBOS_TOP) src kernel libroot os ] ; #SEARCH_SOURCE += [ FDirName $(OBOS_TOP) src kernel libroot os ] ;
SimpleTest DiskScannerTest : DiskScannerTest.cpp #SimpleTest DiskScannerTest : DiskScannerTest.cpp
: <boot!home!config!lib>libkernelland_emu.so be stdc++.r4 ; # : <boot!home!config!lib>libkernelland_emu.so be stdc++.r4 ;
LOCATE on <installed>DiskScannerTest = [ on DiskScannerTest return $(LOCATE) ] ; #LOCATE on <installed>DiskScannerTest = [ on DiskScannerTest return $(LOCATE) ] ;
Depends <installed>DiskScannerTest : DiskScannerTest ; #Depends <installed>DiskScannerTest : DiskScannerTest ;
#
# the add-on # the add-on
#
SEARCH_SOURCE += [ FDirName $(OBOS_TOP) src add-ons kernel disk_scanner ] ; #SEARCH_SOURCE += [ FDirName $(OBOS_TOP) src add-ons kernel disk_scanner ] ;
#
{ #{
local defines = [ FDefines USERLAND ] ; # local defines = [ FDefines USERLAND ] ;
SubDirCcFlags $(defines) ; # SubDirCcFlags $(defines) ;
SubDirC++Flags $(defines) ; # SubDirC++Flags $(defines) ;
} #}
#
Addon <userland>disk_scanner : userland disk_scanner : #Addon <userland>disk_scanner : userland disk_scanner :
disk_scanner.c # disk_scanner.c
; #;
LinkSharedOSLibs <userland>disk_scanner : libkernelland_emu.so ; #LinkSharedOSLibs <userland>disk_scanner : libkernelland_emu.so ;
#
# for convenience: this target builds all userland modules # for convenience: this target builds all userland modules
# #
NotFile userland_disk_scanner_modules ; #NotFile userland_disk_scanner_modules ;
Depends userland_disk_scanner_modules : #Depends userland_disk_scanner_modules :
# the main module # # the main module
<userland>disk_scanner # <userland>disk_scanner
#
# FS modules # # FS modules
<userland>bfs # <userland>bfs
<userland>iso9660 # <userland>iso9660
#
# partition modules # # partition modules
<userland>intel # <userland>intel
#
# session modules # # session modules
<userland>cdrom # <userland>cdrom
; #;
#
SubInclude OBOS_TOP src tests add-ons kernel disk_scanner fs ; #SubInclude OBOS_TOP src tests add-ons kernel disk_scanner fs ;
SubInclude OBOS_TOP src tests add-ons kernel disk_scanner partition ; #SubInclude OBOS_TOP src tests add-ons kernel disk_scanner partition ;
SubInclude OBOS_TOP src tests add-ons kernel disk_scanner session ; #SubInclude OBOS_TOP src tests add-ons kernel disk_scanner session ;