48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
# This is used in PANEL_CFLAGS
|
|
cappletname = common
|
|
|
|
noinst_LTLIBRARIES = liblanguage.la libshortcuts.la
|
|
noinst_PROGRAMS = list-languages
|
|
|
|
AM_CPPFLAGS = \
|
|
$(PANEL_CFLAGS) \
|
|
$(LIBLANGUAGE_CFLAGS) \
|
|
-DDATADIR=\""$(datadir)"\" \
|
|
-DUIDIR=\""$(pkgdatadir)/ui"\" \
|
|
-DLIBLOCALEDIR=\""$(prefix)/lib/locale"\" \
|
|
-DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
|
|
-DUM_PIXMAP_DIR=\""$(pkgdatadir)/pixmaps"\"
|
|
|
|
liblanguage_la_SOURCES = \
|
|
gdm-languages.h \
|
|
gdm-languages.c \
|
|
locarchive.h \
|
|
cc-common-language.c \
|
|
cc-common-language.h \
|
|
cc-language-chooser.c \
|
|
cc-language-chooser.h
|
|
|
|
liblanguage_la_LIBADD = \
|
|
$(LIBLANGUAGE_LIBS)
|
|
|
|
liblanguage_la_LDFLAGS = -export_dynamic -avoid-version -module -no-undefined
|
|
|
|
libshortcuts_la_SOURCES = \
|
|
eggaccelerators.h \
|
|
eggaccelerators.c
|
|
|
|
libshortcuts_la_LIBADD = \
|
|
$(LIBSHORTCUTS_LIBS)
|
|
|
|
libshortcuts_la_LDFLAGS = -export_dynamic -avoid-version -module -no-undefined
|
|
|
|
list_languages_SOURCES = list-languages.c
|
|
list_languages_LDADD = liblanguage.la
|
|
list_languages_CFLAGS = $(LIBLANGUAGE_CFLAGS)
|
|
|
|
uidir = $(pkgdatadir)/ui
|
|
|
|
dist_ui_DATA = \
|
|
language-chooser.ui
|
|
|
|
-include $(top_srcdir)/git.mk
|