1SubDir HAIKU_TOP src apps diskprobe ; 2 3UsePrivateHeaders shared ; 4 5if ! $(DANO_COMPATIBLE) { 6 local defines = COMPILE_FOR_R5 ; 7 defines = [ FDefines $(defines) ] ; 8 SubDirCcFlags $(defines) ; 9 SubDirC++Flags $(defines) ; 10} 11 12Application DiskProbe : 13 DiskProbe.cpp 14 DataEditor.cpp 15 DataView.cpp 16 ProbeWindow.cpp 17 FileWindow.cpp 18 AttributeWindow.cpp 19 AttributeEditors.cpp 20 ProbeView.cpp 21 OpenWindow.cpp 22 FindWindow.cpp 23 : libbe.so libtracker.so libtranslation.so 24 : DiskProbe.rdef 25 ; 26 27if $(HAIKU_COMPATIBLE) { 28 LinkAgainst DiskProbe : libroot.so ; 29} 30