1SubDir HAIKU_TOP src apps aboutsystem ; 2 3UsePrivateHeaders app shared ; 4 5SetSubDirSupportedPlatformsBeOSCompatible ; 6 7if ! $(TARGET_PLATFORM_HAIKU_COMPATIBLE) { 8 UseHeaders [ FDirName $(HAIKU_TOP) headers os kernel ] : true ; 9} 10if $(TARGET_PLATFORM) = r5 { 11 SubDirC++Flags -DR5_COMPATIBLE ; 12} 13if $(TARGET_PLATFORM) = dano { 14 SubDirC++Flags -DR5_COMPATIBLE ; 15} 16 17Application AboutSystem : 18 AboutSystem.cpp 19 HyperTextActions.cpp 20 HyperTextView.cpp 21 Utilities.cpp 22 : $(TARGET_LIBSTDC++) be translation $(HAIKU_LOCALE_LIBS) 23 : AboutSystem.rdef 24; 25 26DoCatalogs AboutSystem : 27 x-vnd.Haiku-About 28 : 29 AboutSystem.cpp 30 Utilities.cpp 31; 32