LEFT | RIGHT |
(Both sides are equal) |
1 # vim:set noet ts=4: | 1 # vim:set noet ts=4: |
2 # | 2 # |
3 # ibus - The Input Bus | 3 # ibus - The Input Bus |
4 # | 4 # |
5 # Copyright (c) 2007-2010 Peng Huang <shawn.p.huang@gmail.com> | 5 # Copyright (c) 2007-2010 Peng Huang <shawn.p.huang@gmail.com> |
6 # Copyright (c) 2007-2010 Red Hat, Inc. | 6 # Copyright (c) 2007-2010 Red Hat, Inc. |
7 # | 7 # |
8 # This library is free software; you can redistribute it and/or | 8 # This library is free software; you can redistribute it and/or |
9 # modify it under the terms of the GNU Lesser General Public | 9 # modify it under the terms of the GNU Lesser General Public |
10 # License as published by the Free Software Foundation; either | 10 # License as published by the Free Software Foundation; either |
(...skipping 11 matching lines...) Expand all Loading... |
22 | 22 |
23 if ENABLE_GTK3 | 23 if ENABLE_GTK3 |
24 GTK3_UI = gtk3 | 24 GTK3_UI = gtk3 |
25 endif | 25 endif |
26 | 26 |
27 SUBDIRS = \ | 27 SUBDIRS = \ |
28 $(GTK3_UI) \ | 28 $(GTK3_UI) \ |
29 $(NULL) | 29 $(NULL) |
30 | 30 |
31 -include $(top_srcdir)/git.mk | 31 -include $(top_srcdir)/git.mk |
LEFT | RIGHT |