blob: 1a24e4272287ca4115ecfdf1f0b19f193901a822 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Use this Makefile to regenerate bindings
#
# Needs gir2pascal tool from the Lazarus project
all:
gir2pas \
--input /usr/share/gir-1.0/Gtk-3.0.gir \
--output-directory . \
--overwrite-files \
--declare-enums-as Set \
--unit-prefix laz \
clean:
rm -f *.pas *.o *.a *.d *.s *.ppu *.dcu *.rst *~ *.~*
|