mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-17 14:30:15 +00:00
a28d2cb923
This will hopefully help resolve the circular dependency between libgtk linking against inspector/libgtkinspector and inspector/ needing extract-strings from gtk/. I didn't preserve the EXEEXT decorations in this operation - automake gave me stern warnings about it, so I just dropped them all. Somebody who cross-builds GTK+ will have to reconstruct this.
12 lines
547 B
Makefile
12 lines
547 B
Makefile
# The extract_strings tool is a build utility that runs on the build system.
|
|
extract_strings_sources = extract-strings.c
|
|
extract_strings_cppflags =
|
|
extract_strings_cflags = $(GLIB_CFLAGS_FOR_BUILD)
|
|
extract_strings_ldadd = $(GLIB_LIBS_FOR_BUILD)
|
|
|
|
extract-strings: $(extract_strings_sources)
|
|
@rm -f extract-strings
|
|
$(AM_V_CCLD)$(CC_FOR_BUILD) $(extract_strings_cppflags) $(CPPFLAGS_FOR_BUILD) $(extract_strings_cflags) $(CFLAGS_FOR_BUILD) $^ $(LDFLAGS_FOR_BUILD) $(extract_strings_ldadd) $(LIBS_FOR_BUILD) -o $@
|
|
|
|
noinst_PROGRAMS = extract-strings
|