mirror of
https://gitlab.com/gnuwget/wget2.git
synced 2026-02-01 04:10:48 +00:00
* cfg.mk: Add examples as excludes for config.h * examples/Makefile.am: Remove -I to srcdir and builddir * examples/*.c: Remove #include <config.h> * include/wget/wget.h: Remove gettext include and defines * libwget/private.h: Add gettext include and defines * src/wget_main.h: Likewise * tests/libtest.h: Likewise * src/log.c: Add #include <string.h>
23 lines
673 B
Makefile
23 lines
673 B
Makefile
noinst_PROGRAMS = \
|
|
getstream\
|
|
http_get2\
|
|
http_multi_get\
|
|
print_css_urls\
|
|
print_css_urls2\
|
|
print_css_urls3 http_get\
|
|
print_html_urls\
|
|
websequencediagram\
|
|
websequencediagram_high\
|
|
check_url_types
|
|
|
|
|
|
AM_CFLAGS = $(WERROR_CFLAGS) $(WARN_CFLAGS)
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include/wget \
|
|
-DWGETVER_FILE=\"$(top_builddir)/include/wget/wgetver.h\"
|
|
AM_LDFLAGS = -no-install
|
|
LDADD = ../libwget/libwget.la\
|
|
$(LIBOBJS) $(GETADDRINFO_LIB) $(HOSTENT_LIB) $(INET_NTOP_LIB)\
|
|
$(LIBSOCKET) $(LIB_CLOCK_GETTIME) $(LIB_NANOSLEEP) $(LIB_POLL) $(LIB_PTHREAD)\
|
|
$(LIB_SELECT) $(LTLIBICONV) $(LTLIBINTL) $(LTLIBTHREAD) $(SERVENT_LIB) @INTL_MACOSX_LIBS@\
|
|
$(LIBS) ../lib/libgnu.la
|