Move the functions out of the define
[gnome.gobject-introspection] / Makefile.introspection
1 # -*- Mode: make -*-
2 # Copyright 2009 Johan Dahlin
3 #
4 # This file is free software; the author(s) gives unlimited
5 # permission to copy and/or distribute it, with or without
6 # modifications, as long as this notice is preserved.
7 #
8 # * Input variables:
9 #
10 #   INTROSPECTION_GIRS - List of GIRS that should be generated
11 #   INTROSPECTION_SCANNER - Command to invoke scanner, normally set by
12 #      GOBJECT_INTROSPECTION_REQUIRE/CHECK() in introspection.m4
13 #   INTROSPECTION_SCANNER_ARGS - Additional args to pass in to the scanner
14 #   INTROSPECTION_COMPILER - Command to invoke compiler, normally set by
15 #      GOBJECT_INTROSPECTION_REQUIRE/CHECK() in introspection.m4
16 #   INTROSPECTION_COMPILER_ARGS - Additional args to pass in to the compiler
17 #
18 # * Simple tutorial
19 #
20 # Add this to configure.ac:
21 #   -Wno-portability to AM_INIT_AUTOMAKE
22 #   GOBJECT_INTROSPECTION_CHECK([0.6.7])
23 #
24 # Add this to Makefile.am where your library/program is built:
25 #   include $(INTROSPECTION_MAKEFILE)
26 #   INTROSPECTION_GIRS = YourLib-1.0.gir
27 #   YourLib_1_0_gir_NAMESPACE = YourLib
28 #   YourLib_1_0_gir_VERSION = 1.0
29 #   YourLib_1_0_gir_LIBS = libyourlib.la
30 #   YourLib_1_0_gir_FILES = $(libyourlib_1_0_SOURCES)
31 #   girdir = $(INTROSPECTION_GIRDIR)
32 #   dist_gir_DATA = YourLib-1.0.gir
33 #   typelibdir = $(INTROSPECTION_TYPELIBDIR)
34 #   typelib_DATA = YourLib-1.0.typelib
35 #   CLEANFILES = $(dist_gir_DATA) $(typelib_DATA)
36 #
37
38 # Make sure the required variables are set, these should under normal
39 # circumstances come from introspection.m4
40 $(if $(INTROSPECTION_GIRS),,$(error Need to define INTROSPECTION_GIRS))
41 $(if $(INTROSPECTION_SCANNER),,$(error Need to define INTROSPECTION_SCANNER))
42 $(if $(INTROSPECTION_COMPILER),,$(error Need to define INTROSPECTION_COMPILER))
43
44 # Private functions
45
46 ## Transform the gir filename to something which can reference through a variable
47 ## without automake/make complaining, eg Gtk-2.0.gir -> Gtk_2_0_gir
48 _gir_name = $(subst -,_,$(subst .,_,$(1)))
49
50 # Namespace and Version is either fetched from the gir filename
51 # or the _NAMESPACE/_VERSION variable combo
52 _gir_namespace = $(or $($(_gir_name)_NAMESPACE),$(firstword $(subst -, ,$(1))))
53 _gir_version = $(or $($(_gir_name)_VERSION),$(lastword $(subst -, ,$(1:.gir=))))
54
55 # _PROGRAM is an optional variable which needs it's own --program argument
56 _gir_program = $(if $($(_gir_name)_PROGRAM),--program=$($(_gir_name)_PROGRAM))
57
58 # Variables which provides a list of things
59 _gir_libraries = $(foreach lib,$($(_gir_name)_LIBS),--library=$(lib))
60 _gir_packages = $(foreach pkg,$($(_gir_name)_PACKAGES),--pkg=$(pkg))
61 _gir_includes = $(foreach include,$($(_gir_name)_INCLUDES),--include=$(include))
62
63 # Reuse the LIBTOOL variable from by automake if it's set
64 _gir_libtool = $(if $(LIBTOOL),--libtool="$(LIBTOOL)")
65
66 #
67 # Creates a GIR by scanning C headers/sources
68 # $(1) - Name of the gir file (output)
69 #
70 # If output is Gtk-2.0.gir then you should name the variables like
71 # Gtk_2_0_gir_NAMESPACE, Gtk_2_0_gir_VERSION etc.
72 # Required variables:
73 # FILES - C sources and headers which should be scanned
74 #
75 # One of these variables are required:
76 # LIBS - Library where the symbol represented in the gir can be found
77 # PROGRAM - Program where the symbol represented in the gir can be found
78 #
79 # Optional variables
80 # NAMESPACE - Namespace of the gir, first letter capital,
81 #   rest should be lower case, for instance: 'Gtk', 'Clutter', 'ClutterGtk'.
82 #   If not present the namespace will be fetched from the gir filename,
83 #   the part before the first dash. For 'Gtk-2.0', namespace will be 'Gtk'.
84 # VERSION - Version of the gir, if not present, will be fetched from gir
85 # filename, the part after the first dash. For 'Gtk-2.0', version will be '2.0'.
86 # LIBTOOL - Command to invoke libtool, usually set by automake
87 # SCANNERFLAGS - Flags to pass in to the scanner, see g-ir-scanner(1) for a list
88 # CFLAGS - Flags to pass in to the parser when scanning headers
89 # PACKAGES - list of pkg-config names which cflags are required to parse
90 #   the headers of this gir
91 # INCLUDES - Gir files to include without the .gir suffix, for instance
92 #   GLib-2.0, Gtk-2.0. This is needed for all libraries which you depend on that
93 #   provides introspection information.
94 #
95
96 define introspection-scanner
97
98 # Basic sanity check, to make sure required variables are set
99 $(if $($(_gir_name)_FILES),,$(error Need to define $(_gir_name)_FILES))
100 $(if $(or $($(_gir_name)_LIBS),
101           $($(_gir_name)_PROGRAM)),,
102     $(error Need to define $(_gir_name)_LIBS or $(_gir_name)_PROGRAM))
103
104 # Only dependencies we know are actually filenames goes into _FILES, make
105 # sure these are built before running the scanner. Libraries and programs
106 # needs to be added manually.
107 $(1): $$($(_gir_name)_FILES) $(INTROSPECTION_PARSER)
108         $(INTROSPECTION_SCANNER) $(INTROSPECTION_SCANNER_ARGS) \
109           --namespace=$(_gir_namespace) \
110           --nsversion=$(_gir_version) \
111           $(_gir_libtool) \
112           $(_gir_program) \
113           $(_gir_libraries) \
114           $(_gir_packages) \
115           $(_gir_includes) \
116           $($(_gir_name)_SCANNERFLAGS) \
117           $($(_gir_name)_CFLAGS) \
118           $($(_gir_name)_FILES) \
119           --output $(1)
120 endef
121
122 $(foreach gir,$(INTROSPECTION_GIRS),$(eval $(call introspection-scanner,$(gir))))
123
124 #
125 # Compiles a gir into a typelib
126 # $(1): gir filename (input)
127 # $(2): typelib filename (output)
128 #
129 define introspection-compiler
130 $(INTROSPECTION_COMPILER) $(INTROSPECTION_COMPILER_ARGS) --includedir=. $(1) -o $(2)
131 endef
132
133 # Simple rule to compile a typelib.
134 %.typelib: %.gir $(INTROSPECTION_COMPILER)
135         $(call introspection-compiler,$<,$@)