search for: c47d65a

Displaying 3 results from an estimated 3 matches for "c47d65a".

2016 Aug 25
2
[PATCH] build: Add common CLEANFILES and DISTCLEANFILES to common-rules.mk.
...kernel.pod $< touch $@ -CLEANFILES += \ - stamp-virt-get-kernel.pod \ - virt-get-kernel.1 - # Dependencies. depend: .depend @@ -136,6 +130,4 @@ depend: .depend endif -DISTCLEANFILES = .depend - .PHONY: depend diff --git a/gobject/Makefile.am b/gobject/Makefile.am index c46b6e2..c47d65a 100644 --- a/gobject/Makefile.am +++ b/gobject/Makefile.am @@ -41,8 +41,8 @@ EXTRA_DIST = \ # Remove the old generated files which were directly in the gobject/ # directory. These have now moved into gobject/src/ -CLEANFILES = \ - guestfs-gobject*.c *.o *.lo +CLEANFILES += \ + guestfs-gobject*...
2017 Jan 20
5
[PATCH 0/5] Rename src/ to lib/ and move common code to common/
This patch series moves some files and directories around but is only code motion (or supposed to be). A new directory, common/, is created for all of the common code which is currently shared in random ways between parts of the project. And src/ becomes lib/ (the largest change, but mostly mechanical). In full this series makes the following changes: src/libprotocol -> common/protocol
2017 Jan 25
10
[PATCH v2 0/7] Rename src/ to lib/ and move common code to common/
Previous patch series was posted here: https://www.redhat.com/archives/libguestfs/2017-January/msg00059.html v2 simply extends this patch series to cover the extra directories common/edit, common/progress, common/windows and common/parallel. The only remaining item is to consider whether we should rename mllib to something else, mlcommon was my suggestion. Rich.