1## automake input file for wrlib 2 3AUTOMAKE_OPTIONS = 4 5noinst_PROGRAMS = testdraw testgrad testrot view 6 7EXTRA_DIST = test.png tile.xpm ballot_box.xpm 8 9AM_CPPFLAGS = -I$(srcdir)/.. $(DFLAGS) @HEADER_SEARCH_PATH@ 10 11LIBLIST = $(top_builddir)/wrlib/libwraster.la @XLIBS@ 12 13testdraw_SOURCES = testdraw.c 14testdraw_LDADD = $(LIBLIST) 15 16testgrad_SOURCES = testgrad.c 17testgrad_LDADD = $(LIBLIST) 18 19testrot_SOURCES = testrot.c 20testrot_LDADD = $(LIBLIST) 21 22view_SOURCES= view.c 23view_LDADD = $(LIBLIST) 24