mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 16:50:11 +00:00
671b3181b0
This reverts commit 5c926ca6bb
.
This commit just dropped the nice shadow that we used to have
around these shots, without a justification.
44 lines
737 B
Makefile
44 lines
737 B
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
AM_CPPFLAGS = \
|
|
-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)/gtk/libgtk-3.la
|
|
|
|
LDADDS = \
|
|
$(top_builddir)/gtk/libgtk-3.la \
|
|
$(top_builddir)/gdk/libgdk-3.la \
|
|
$(GTK_DEP_LIBS) \
|
|
$(GDK_DEP_LIBS) \
|
|
-lm
|
|
|
|
if USE_X11
|
|
noinst_PROGRAMS = \
|
|
doc-shooter
|
|
endif
|
|
|
|
doc_shooter_DEPENDENCIES = $(DEPS)
|
|
doc_shooter_LDADD = $(LDADDS)
|
|
doc_shooter_SOURCES= \
|
|
shadow.c \
|
|
shadow.h \
|
|
shooter.c \
|
|
widgets.c \
|
|
widgets.h
|
|
|
|
clean-local:
|
|
for file in *.png; do \
|
|
case "$$file" in \
|
|
folder.png|gnome.png) ;; \
|
|
*) rm -f $$file ;; \
|
|
esac ; \
|
|
done
|
|
|
|
-include $(top_srcdir)/git.mk
|