forked from AuroraMiddleware/gtk
524ce69bcb
At the same time, change the library sonames for -3.0 to just -3. This is necessary since the 2.99 releases installed libraries like libgtk-3.0.so.0.9903.0, and we want to prevent the library version number from jumping back. So 3.0 will have libgtk-3.so.0.0.0.
44 lines
734 B
Makefile
44 lines
734 B
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
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)/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
|