diff --git a/Makefile.am b/Makefile.am index 6ee76fb1a687628672a4fefe45134477318b92b2..be7092720b7f3fe2f6a85e792c2a09310196e453 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6,26 +6,14 @@ resource_files = \ $(top_srcdir)/data/gqpe.css \ $(NULL) -icondir = $(datadir)/icons/hicolor/scalable/apps -icon_DATA = data/gqpe.svg - -desktopdir = $(datadir)/applications -desktop_DATA = data/gqpe.desktop - -noinst_DATA = \ - vapi/config.vapi \ - $(gresource_file) \ - $(resource_files) \ - $(NULL) - -bin_PROGRAMS = src/gqpe - src/resources.c: $(gresource_file) $(resource_files) $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) \ --target=$@ \ --sourcedir=$(top_srcdir)/data \ --generate-source $< +bin_PROGRAMS = src/gqpe + src_gqpe_SOURCES = \ src/application.vala \ src/application-window.vala \ @@ -64,6 +52,18 @@ src_gqpe_LDADD = \ @GTK_LIBS@ \ $(NULL) +icondir = $(datadir)/icons/hicolor/scalable/apps +icon_DATA = data/gqpe.svg + +desktopdir = $(datadir)/applications +desktop_DATA = data/gqpe.desktop + +noinst_DATA = \ + vapi/config.vapi \ + $(gresource_file) \ + $(resource_files) \ + $(NULL) + EXTRA_DIST = \ $(noinst_DATA) \ $(icon_DATA) \