Rename files so they follow a naming convention

This commit is contained in:
Gergely Polonkai 2014-10-15 19:56:32 +02:00
parent a9811f21e9
commit b21aee3a11
4 changed files with 6 additions and 5 deletions

View File

@ -1,6 +1,7 @@
res_dir = $(srcdir)/resources res_dir = $(srcdir)/resources
res_src = $(res_dir)/gnome-gitlab.gresource.xml res_src = $(res_dir)/gnome-gitlab.gresource.xml
resource_files = $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies --sourcedir=$(res_dir) $(res_src)) resource_files = $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies --sourcedir=$(res_dir) $(res_src))
AM_CPPFLAGS = \ AM_CPPFLAGS = \
-DGETTEXT_PACKAGE=\""$(GETTEXT_PACKAGE)"\" \ -DGETTEXT_PACKAGE=\""$(GETTEXT_PACKAGE)"\" \
-DGNOMELOCALEDIR=\""$(localedir)"\" -DGNOMELOCALEDIR=\""$(localedir)"\"
@ -12,15 +13,15 @@ AM_VALAFLAGS = \
bin_PROGRAMS = gnome-gitlab bin_PROGRAMS = gnome-gitlab
BUILT_SOURCES = \ BUILT_SOURCES = \
gl-resources.c gg-resources.c
gl-resources.c: $(res_src) $(resource_files) gg-resources.c: $(res_src) $(resource_files)
$(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir)/resources --generate-source $< $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir)/resources --generate-source $<
VALA_SOURCES = \ VALA_SOURCES = \
application.vala \ gg-application.vala \
window.vala \ gg-window.vala \
main.vala gg-main.vala
gnome_gitlab_SOURCES = \ gnome_gitlab_SOURCES = \
$(BUILT_SOURCES) \ $(BUILT_SOURCES) \