diff options
author | rbuj <[email protected]> | 2020-06-21 11:47:12 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-07-05 21:39:23 +0200 |
commit | 231d7029cdfd10995f7ac2f29fd0c1a65ac0b02a (patch) | |
tree | 558bcd593dade84fcfa9325c0f7086102af6e729 | |
parent | 34c561894bfedab242876fea249ab8596a61e8a4 (diff) | |
download | mate-panel-231d7029cdfd10995f7ac2f29fd0c1a65ac0b02a.tar.bz2 mate-panel-231d7029cdfd10995f7ac2f29fd0c1a65ac0b02a.tar.xz |
build: Add built sources to CLEANFILES target
-rw-r--r-- | Makefile.am | 3 | ||||
-rw-r--r-- | applets/notification_area/Makefile.am | 3 | ||||
-rw-r--r-- | applets/notification_area/system-tray/Makefile.am | 3 |
3 files changed, 8 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index e6421580..ef3c62b6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -22,6 +22,9 @@ EXTRA_DIST = \ COPYING-DOCS \ HACKING +CLEANFILES = \ + config.h + MAINTAINERCLEANFILES = \ $(srcdir)/INSTALL \ $(srcdir)/aclocal.m4 \ diff --git a/applets/notification_area/Makefile.am b/applets/notification_area/Makefile.am index 539db550..365cdf5d 100644 --- a/applets/notification_area/Makefile.am +++ b/applets/notification_area/Makefile.am @@ -107,7 +107,7 @@ na-resources.c: na.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$ na-resources.h: na.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir) --generate-dependencies $(srcdir)/na.gresource.xml) $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name na $< -BUILT_SOURCES = \ +BUILT_SOURCES = \ na-resources.c \ na-resources.h @@ -121,6 +121,7 @@ EXTRA_DIST = \ $(service_in_files) CLEANFILES = \ + $(BUILT_SOURCES) \ $(applet_DATA) \ $(applet_in_files) \ $(service_DATA) \ diff --git a/applets/notification_area/system-tray/Makefile.am b/applets/notification_area/system-tray/Makefile.am index f3e8c360..d415dc53 100644 --- a/applets/notification_area/system-tray/Makefile.am +++ b/applets/notification_area/system-tray/Makefile.am @@ -39,4 +39,7 @@ BUILT_SOURCES = na-marshal.c na-marshal.h EXTRA_DIST = \ na-marshal.list +CLEANFILES = \ + $(BUILT_SOURCES) + -include $(top_srcdir)/git.mk |