1AUTOMAKE_OPTIONS = no-dependencies 2ACLOCAL_AMFLAGS = -I m4 3 4bin_PROGRAMS = \ 5 TestGfxPrimitives \ 6 TestRotozoom \ 7 TestFramerate \ 8 TestImageFilter \ 9 TestFonts \ 10 TestABGR \ 11 TestShrink \ 12 TestGfxTexture \ 13 TestGfxBlit 14 15TestGfxPrimitives_SOURCES = TestGfxPrimitives.c 16TestRotozoom_SOURCES = TestRotozoom.c 17TestFramerate_SOURCES = TestFramerate.c 18TestImageFilter_SOURCES = TestImageFilter.c 19TestFonts_SOURCES = TestFonts.c 20TestABGR_SOURCES = TestABGR.c 21TestShrink_SOURCES = TestShrink.c 22TestGfxTexture_SOURCES = TestGfxTexture.c 23TestGfxBlit_SOURCES = TestGfxBlit.c 24 25DISTCLEANFILES = *~ *~c *~h *.cross.cache inc 26 27distclean-local: 28 -rm -rf autom4te.cache 29 -rm -f *.user 30 31