diff options
author | Dan Winship <danw@gnome.org> | 2012-02-08 12:56:52 -0500 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2012-02-15 11:42:15 -0500 |
commit | 839eab556419b6af5046e44361bdcf14fe028d27 (patch) | |
tree | b9183f7d2cc207e7741960a2120756043a95f847 /.gitignore | |
parent | 0b57cc68fd4a146c9fe255f14c667ab306266c0c (diff) | |
download | NetworkManager-839eab556419b6af5046e44361bdcf14fe028d27.tar.gz |
Use glib-mkenums to generate enum types
Rather than generating enum classes by hand (and complaining in each
file that "this should really be standard"), use glib-mkenums.
Unfortunately, we need a very new version of glib-mkenums in order to
deal with NM's naming conventions and to fix a few other bugs, so just
import that into the source tree temporarily.
Also, to simplify the use of glib-mkenums, import Makefile.glib from
https://bugzilla.gnome.org/654395.
To avoid having to run glib-mkenums for every subdirectory of src/,
add a new "generated" directory, and put the generated enums files
there.
Finally, use Makefile.glib for marshallers too, and generate separate
ones for libnm-glib and NetworkManager.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index a1fcced321..ce867c7ec6 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,8 @@ *.bz2 *.gir *.typelib +*.stamp +*-enum-types.[ch] Makefile Makefile.in* configure @@ -143,11 +145,12 @@ initscript/*/[Nn]etwork[Mm]anager *-glue.h *-bindings.h -nm-marshal.[ch] callouts/tests/test-dispatcher-envp libnm-glib/libnm-glib-test +libnm-glib/nm-glib-marshal.* src/NetworkManager src/nm-crash-logger +src/generated/nm-marshal.* src/supplicant-manager/tests/test-supplicant-config system-settings/src test/libnm-glib-test |