1SubDir HAIKU_TOP src add-ons screen_savers flurry ; 2SubDirSysHdrs $(HAIKU_MESA_HEADERS) ; 3 4# For GCC2 5if $(HAIKU_GCC_VERSION[1]) < 3 { 6 SubDirC++Flags --no-warnings ; 7} 8 9 10AddResources Message : Flurry.rdef ; 11 12local sources = 13 Flurry.cpp 14 Smoke.cpp 15 Spark.cpp 16 Star.cpp 17 Texture.cpp 18; 19 20Includes [ FGristFiles $(sources) ] : $(HAIKU_MESA_HEADERS_DEPENDENCY) ; 21 # Dependency needed to trigger downloading/unzipping the package before 22 # compiling the files. 23 24ScreenSaver Flurry : 25 $(sources) : 26 be screensaver GL libshared.a $(HAIKU_LOCALE_LIBS) $(TARGET_LIBSUPC++) 27; 28 29DoCatalogs Flurry : 30 x-vnd.Haiku-Flurry 31 : 32 $(sources) 33; 34