1SubDir HAIKU_TOP src preferences time ; 2 3SetSubDirSupportedPlatformsBeOSCompatible ; 4 5UsePrivateHeaders interface locale shared [ FDirName libroot time ] ; 6UsePrivateSystemHeaders ; 7 8local sources = 9 AnalogClock.cpp 10 BaseView.cpp 11 Bitmaps.cpp 12 ClockView.cpp 13 DateTimeEdit.cpp 14 SectionEdit.cpp 15 DateTimeView.cpp 16 NetworkTimeView.cpp 17 ntp.cpp 18 Time.cpp 19 TimeSettings.cpp 20 TimeWindow.cpp 21 TimeZoneListItem.cpp 22 TimeZoneListView.cpp 23 TZDisplay.cpp 24 ZoneView.cpp 25 ; 26 27 28SubDirSysHdrs $(HAIKU_ICU_HEADERS) ; 29Includes [ FGristFiles $(sources) ] : $(HAIKU_ICU_HEADERS_DEPENDENCY) ; 30 # Dependency needed to trigger downloading/unzipping the package before 31 # compiling the files. 32 33Preference Time 34 : $(sources) 35 : be libshared.a $(TARGET_LIBSTDC++) $(HAIKU_LOCALE_LIBS) $(HAIKU_NETWORK_LIBS) 36 : Time.rdef 37 ; 38 39DoCatalogs Time : 40 x-vnd.Haiku-Time 41 : 42 ClockView.cpp 43 DateTimeView.cpp 44 NetworkTimeView.cpp 45 ntp.cpp 46 Time.cpp 47 TimeWindow.cpp 48 TimeZoneListView.cpp 49 ZoneView.cpp 50 ; 51