mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
0297f9a015
Mon Aug 23 17:19:19 2004 Jonathan Blandford <jrb@redhat.com> * configure.in: * docs/tools/Makefile.am (clean-local): add the doc shooter to the docs dir as an uninstalled helper tool.
33 lines
720 B
Makefile
33 lines
720 B
Makefile
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir)/gdk \
|
|
-I$(top_srcdir)/gdk \
|
|
-I$(top_srcdir)/gdk/x11 \
|
|
$(GTK_DEBUG_FLAGS) \
|
|
$(GTK_DEP_CFLAGS)
|
|
|
|
DEPS = \
|
|
$(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \
|
|
$(top_builddir)/gdk/$(gdktargetlib) \
|
|
$(top_builddir)/gtk/$(gtktargetlib)
|
|
|
|
LDADDS = \
|
|
$(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \
|
|
$(top_builddir)/gdk/$(gdktargetlib) \
|
|
$(top_builddir)/gtk/$(gtktargetlib)
|
|
|
|
noinst_PROGRAMS = \
|
|
doc-shooter
|
|
|
|
doc_shooter_DEPENDENCIES = $(DEPS)
|
|
doc_shooter_LDADD = $(LDADDS)
|
|
doc_shooter_SOURCES= \
|
|
shadow.c \
|
|
shadow.h \
|
|
shooter.c \
|
|
widgets.c \
|
|
widgets.h
|
|
|
|
clean-local:
|
|
rm -f *.png
|