2005-04-28 Sven Neumann <sven@gimp.org> * tools/Makefile.am * tools/units.[ch]: added a very basic GimpUnit implementation. * tools/shooter.c * tools/widgets.c: initialize the units and enable GimpUnitMenu.
41 lines
966 B
Makefile
41 lines
966 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la
|
|
libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la
|
|
libgimpconfig = $(top_builddir)/libgimpconfig/libgimpconfig-$(GIMP_API_VERSION).la
|
|
libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la
|
|
libgimpmodule = $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la
|
|
libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la
|
|
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(GTK_CFLAGS)
|
|
|
|
LDADDS = \
|
|
$(libgimpwidgets) \
|
|
$(libgimpconfig) \
|
|
$(libgimpmodule) \
|
|
$(libgimpmath) \
|
|
$(libgimpcolor) \
|
|
$(libgimpbase) \
|
|
$(GTK_LIBS)
|
|
|
|
EXTRA_PROGRAMS = doc-shooter
|
|
|
|
doc_shooter_SOURCES = \
|
|
shadow.c \
|
|
shadow.h \
|
|
shooter.c \
|
|
units.c \
|
|
units.h \
|
|
widgets.c \
|
|
widgets.h
|
|
|
|
doc_shooter_LDADD = $(LDADDS)
|
|
|
|
EXTRA_DIST = README.shooter
|
|
|
|
|
|
clean-local:
|
|
rm -f *.png
|