From b30064c0d00808df920ab82457511b989b22130e Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Tue, 27 Sep 2005 21:11:28 +0200 Subject: [PATCH] Rename targets: *-l -> *-local --- Makefile.lib | 14 +++++++------- doc/Makefile | 2 +- doc/man/man1/Makefile | 2 +- doc/man/man5/Makefile | 2 +- po/Makefile | 10 +++++----- src/Makefile | 2 +- src/bfu/Makefile | 2 +- src/bookmarks/Makefile | 2 +- src/bookmarks/backend/Makefile | 2 +- src/cache/Makefile | 2 +- src/config/Makefile | 2 +- src/cookies/Makefile | 2 +- src/dialogs/Makefile | 2 +- src/document/Makefile | 2 +- src/document/css/Makefile | 2 +- src/document/dom/Makefile | 2 +- src/document/html/Makefile | 2 +- src/document/html/parser/Makefile | 2 +- src/document/plain/Makefile | 2 +- src/document/sgml/Makefile | 2 +- src/document/sgml/html/Makefile | 2 +- src/ecmascript/Makefile | 2 +- src/ecmascript/spidermonkey/Makefile | 2 +- src/encoding/Makefile | 2 +- src/formhist/Makefile | 2 +- src/globhist/Makefile | 2 +- src/intl/Makefile | 2 +- src/intl/gettext/Makefile | 6 +++--- src/main/Makefile | 2 +- src/mime/Makefile | 2 +- src/mime/backend/Makefile | 2 +- src/network/Makefile | 2 +- src/network/ssl/Makefile | 2 +- src/osdep/Makefile | 2 +- src/osdep/beos/Makefile | 2 +- src/osdep/os2/Makefile | 2 +- src/osdep/riscos/Makefile | 2 +- src/osdep/unix/Makefile | 2 +- src/osdep/win32/Makefile | 2 +- src/protocol/Makefile | 2 +- src/protocol/auth/Makefile | 2 +- src/protocol/bittorrent/Makefile | 2 +- src/protocol/file/Makefile | 2 +- src/protocol/finger/Makefile | 2 +- src/protocol/ftp/Makefile | 2 +- src/protocol/gopher/Makefile | 2 +- src/protocol/http/Makefile | 2 +- src/protocol/nntp/Makefile | 2 +- src/protocol/rewrite/Makefile | 2 +- src/protocol/smb/Makefile | 2 +- src/scripting/Makefile | 2 +- src/scripting/guile/Makefile | 2 +- src/scripting/lua/Makefile | 2 +- src/scripting/perl/Makefile | 2 +- src/scripting/python/Makefile | 2 +- src/scripting/ruby/Makefile | 2 +- src/session/Makefile | 2 +- src/terminal/Makefile | 2 +- src/util/Makefile | 2 +- src/viewer/Makefile | 2 +- src/viewer/dump/Makefile | 2 +- src/viewer/text/Makefile | 2 +- 62 files changed, 74 insertions(+), 74 deletions(-) diff --git a/Makefile.lib b/Makefile.lib index 225321b4..7faa38ef 100644 --- a/Makefile.lib +++ b/Makefile.lib @@ -61,7 +61,7 @@ endif ifdef OBJS CLEAN += $(OBJS) -clean-l: +clean-local: $(RM) $(CLEAN) *.a endif @@ -77,12 +77,12 @@ ifdef SUBDIRS done endif -all: all-recursive all-l -install: install-recursive install-l -clean: clean-recursive clean-l +all: all-recursive all-local +install: install-recursive install-local +clean: clean-recursive clean-local -all-l: -install-l: -clean-l: +all-local: +install-local: +clean-local: # vim:syntax=make diff --git a/doc/Makefile b/doc/Makefile index b6516338..ec0bb010 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -129,7 +129,7 @@ doc-dirs: $(INSTALL) -d $(DOC_DIRS) # $(MAN_DIR) intentionally left out -clean-l: +clean-local: $(RM) -r $(HTML_DIR) $(XML_DIR) $(TXT_DIR) $(PDF_DIR) *.tmp diff --git a/doc/man/man1/Makefile b/doc/man/man1/Makefile index 24108a10..68e1ba5a 100644 --- a/doc/man/man1/Makefile +++ b/doc/man/man1/Makefile @@ -1,7 +1,7 @@ path_to_top=../../.. include $(path_to_top)/Makefile.config -install-l: +install-local: $(INSTALL_DATA) elinks.1 $(DESTDIR)$(mandir)/man1 include $(path_to_top)/Makefile.lib diff --git a/doc/man/man5/Makefile b/doc/man/man5/Makefile index 7a68cfe4..49e7bc79 100644 --- a/doc/man/man5/Makefile +++ b/doc/man/man5/Makefile @@ -1,7 +1,7 @@ path_to_top=../../.. include $(path_to_top)/Makefile.config -install-l: +install-local: $(INSTALL_DATA) elinks.conf.5 $(DESTDIR)$(mandir)/man5 $(INSTALL_DATA) elinkskeys.5 $(DESTDIR)$(mandir)/man5 diff --git a/po/Makefile b/po/Makefile index ec0074d1..5f25b833 100644 --- a/po/Makefile +++ b/po/Makefile @@ -37,7 +37,7 @@ SUFFIXES = .po .gmo .mo # # $(CATALOGS) is empty if --disable-nls. Beats using *-(yes|no) targets. -all-l: $(CATALOGS) +all-local: $(CATALOGS) ### Creating the template po template file @@ -104,11 +104,11 @@ check-po: ### Installation and distribution # -# Use *-l targets to place and remove .gmo files. +# Use *-local targets to place and remove .gmo files. -install-l: install-l-$(CONFIG_NLS) -install-l-no: -install-l-yes: +install-local: install-local-$(CONFIG_NLS) +install-local-no: +install-local-yes: $(MKINSTALLDIRS) $(DESTDIR)$(localedir) @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ diff --git a/src/Makefile b/src/Makefile index 7cd2709c..e02c98d7 100644 --- a/src/Makefile +++ b/src/Makefile @@ -93,7 +93,7 @@ OBJS = vernum.o vernum.o: FORCE FORCE: -all-l: elinks +all-local: elinks elinks: $(OBJS) $(ELINKSLIBS) $(call cmd,link) diff --git a/src/bfu/Makefile b/src/bfu/Makefile index f7569e4b..76aad47d 100644 --- a/src/bfu/Makefile +++ b/src/bfu/Makefile @@ -23,7 +23,7 @@ OBJS = \ text.o \ widget.o -all-l: libbfu.a +all-local: libbfu.a libbfu.a: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/bookmarks/Makefile b/src/bookmarks/Makefile index e82723ee..e4b799a1 100644 --- a/src/bookmarks/Makefile +++ b/src/bookmarks/Makefile @@ -10,7 +10,7 @@ endif BACK_OBJS = common.o default.o $(xbelobj) OBJS = bookmarks.o dialogs.o $(foreach obj,$(BACK_OBJS),backend/$(obj)) -all-l: libbookmarks.a +all-local: libbookmarks.a libbookmarks.a: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/bookmarks/backend/Makefile b/src/bookmarks/backend/Makefile index 9556734c..ee58ced9 100644 --- a/src/bookmarks/backend/Makefile +++ b/src/bookmarks/backend/Makefile @@ -8,6 +8,6 @@ endif OBJS = common.o default.o $(xbelobj) # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/cache/Makefile b/src/cache/Makefile index b0ebcf52..cc7f2b08 100644 --- a/src/cache/Makefile +++ b/src/cache/Makefile @@ -3,7 +3,7 @@ include $(path_to_top)/Makefile.config OBJS = cache.o dialogs.o -all-l: libcache.a +all-local: libcache.a libcache.a: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/config/Makefile b/src/config/Makefile index 3d4d6734..5647a6d3 100644 --- a/src/config/Makefile +++ b/src/config/Makefile @@ -3,7 +3,7 @@ include $(path_to_top)/Makefile.config OBJS = cmdline.o conf.o dialogs.o home.o kbdbind.o options.o opttypes.o timer.o urlhist.o -all-l: libconfig.a +all-local: libconfig.a libconfig.a: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/cookies/Makefile b/src/cookies/Makefile index 63e04810..10adb4e9 100644 --- a/src/cookies/Makefile +++ b/src/cookies/Makefile @@ -3,7 +3,7 @@ include $(path_to_top)/Makefile.config OBJS = cookies.o dialogs.o parser.o -all-l: libcookies.a +all-local: libcookies.a libcookies.a: $(OBJS) parsetst: parser.o parsetst.o diff --git a/src/dialogs/Makefile b/src/dialogs/Makefile index 05110a32..97cde876 100644 --- a/src/dialogs/Makefile +++ b/src/dialogs/Makefile @@ -7,7 +7,7 @@ endif OBJS = document.o download.o edit.o $(exmodeobj) info.o menu.o options.o progress.o status.o -all-l: libdialogs.a +all-local: libdialogs.a libdialogs.a: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/document/Makefile b/src/document/Makefile index 0cd58f1d..de7dba21 100644 --- a/src/document/Makefile +++ b/src/document/Makefile @@ -48,7 +48,7 @@ SUB_OBJS = \ OBJS = docdata.o document.o forms.o options.o refresh.o renderer.o $(SUB_OBJS) -all-l: libdocument.a +all-local: libdocument.a libdocument.a: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/document/css/Makefile b/src/document/css/Makefile index 7d4991c2..8756603c 100644 --- a/src/document/css/Makefile +++ b/src/document/css/Makefile @@ -4,6 +4,6 @@ include $(path_to_top)/Makefile.config OBJS = apply.o css.o parser.o property.o scanner.o stylesheet.o value.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/document/dom/Makefile b/src/document/dom/Makefile index 9c17167e..29cc1463 100644 --- a/src/document/dom/Makefile +++ b/src/document/dom/Makefile @@ -4,6 +4,6 @@ include $(path_to_top)/Makefile.config OBJS = navigator.o node.o renderer.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/document/html/Makefile b/src/document/html/Makefile index 234232f9..49bbd741 100644 --- a/src/document/html/Makefile +++ b/src/document/html/Makefile @@ -6,6 +6,6 @@ SUBDIRS = parser OBJS = frames.o parser.o renderer.o tables.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/document/html/parser/Makefile b/src/document/html/parser/Makefile index 8d434cae..3e6fd257 100644 --- a/src/document/html/parser/Makefile +++ b/src/document/html/parser/Makefile @@ -4,6 +4,6 @@ include $(path_to_top)/Makefile.config OBJS = forms.o general.o link.o parse.o stack.o table.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/document/plain/Makefile b/src/document/plain/Makefile index d6af70cb..8fb8c7df 100644 --- a/src/document/plain/Makefile +++ b/src/document/plain/Makefile @@ -4,6 +4,6 @@ include $(path_to_top)/Makefile.config OBJS = renderer.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/document/sgml/Makefile b/src/document/sgml/Makefile index 98196e54..df1c7db4 100644 --- a/src/document/sgml/Makefile +++ b/src/document/sgml/Makefile @@ -6,6 +6,6 @@ SUBDIRS = html OBJS = sgml.o parser.o scanner.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/document/sgml/html/Makefile b/src/document/sgml/html/Makefile index e23e5fa6..587b149d 100644 --- a/src/document/sgml/html/Makefile +++ b/src/document/sgml/html/Makefile @@ -4,6 +4,6 @@ include $(path_to_top)/Makefile.config OBJS = html.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/ecmascript/Makefile b/src/ecmascript/Makefile index 1831a10c..92a565c5 100644 --- a/src/ecmascript/Makefile +++ b/src/ecmascript/Makefile @@ -7,7 +7,7 @@ SUBDIRS = spidermonkey SM_OBJS = document.o form.o location.o navigator.o unibar.o window.o OBJS = ecmascript.o spidermonkey.o $(foreach obj,$(SM_OBJS),spidermonkey/$(obj)) -all-l: libecmascript.a +all-local: libecmascript.a libecmascript.a: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/ecmascript/spidermonkey/Makefile b/src/ecmascript/spidermonkey/Makefile index c052e052..d1551e91 100644 --- a/src/ecmascript/spidermonkey/Makefile +++ b/src/ecmascript/spidermonkey/Makefile @@ -5,6 +5,6 @@ INCLUDES += $(SPIDERMONKEY_CFLAGS) # Do not forget to also add the .o to ../Makefile. Yes, it sucks. OBJS = document.o form.o location.o navigator.o unibar.o window.o -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/encoding/Makefile b/src/encoding/Makefile index 22340482..83a24f50 100644 --- a/src/encoding/Makefile +++ b/src/encoding/Makefile @@ -11,7 +11,7 @@ endif OBJS = encoding.o $(bzip2obj) $(gzipobj) -all-l: libencoding.a +all-local: libencoding.a libencoding.a: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/formhist/Makefile b/src/formhist/Makefile index 641bdeaf..1790e4dd 100644 --- a/src/formhist/Makefile +++ b/src/formhist/Makefile @@ -3,7 +3,7 @@ include $(path_to_top)/Makefile.config OBJS = formhist.o dialogs.o -all-l: libformhist.a +all-local: libformhist.a libformhist.a: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/globhist/Makefile b/src/globhist/Makefile index 1327c69e..81c27810 100644 --- a/src/globhist/Makefile +++ b/src/globhist/Makefile @@ -3,7 +3,7 @@ include $(path_to_top)/Makefile.config OBJS = globhist.o dialogs.o -all-l: libglobhist.a +all-local: libglobhist.a libglobhist.a: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/intl/Makefile b/src/intl/Makefile index af3cfe66..35820fdc 100644 --- a/src/intl/Makefile +++ b/src/intl/Makefile @@ -9,7 +9,7 @@ SUBDIRS = $(gettextdir) OBJS = charsets.o -all-l: libintl.a +all-local: libintl.a libintl.a: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/intl/gettext/Makefile b/src/intl/gettext/Makefile index 7dc3ee2b..7b81171c 100644 --- a/src/intl/gettext/Makefile +++ b/src/intl/gettext/Makefile @@ -27,7 +27,7 @@ OBJS = \ plural.o \ textdomain.o -all-l: libintl.a +all-local: libintl.a libintl.a: $(OBJS) @@ -46,7 +46,7 @@ plural.c: plural.y $(YACC) $(YFLAGS) --output $@ $< rm -f $*.h -install-l: $(builddir)/charset.alias all +install-local: $(builddir)/charset.alias all @if test '@USE_INCLUDED_LIBINTL@' = yes; then \ temp=$(DESTDIR)$(libdir)/t-charset.alias; \ dest=$(DESTDIR)$(libdir)/charset.alias; \ @@ -77,7 +77,7 @@ install-l: $(builddir)/charset.alias all : ; \ fi -uninstall-l: +uninstall-local: @if test '@USE_INCLUDED_LIBINTL@' = yes; then \ if test -f $(DESTDIR)$(libdir)/charset.alias; then \ temp=$(DESTDIR)$(libdir)/t-charset.alias; \ diff --git a/src/main/Makefile b/src/main/Makefile index d62a8279..ec85f07d 100644 --- a/src/main/Makefile +++ b/src/main/Makefile @@ -7,7 +7,7 @@ endif OBJS = event.o $(interlinkobj) main.o module.o select.o timer.o version.o -all-l: libmain.a +all-local: libmain.a libmain.a: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/mime/Makefile b/src/mime/Makefile index 1745478c..9b4b438a 100644 --- a/src/mime/Makefile +++ b/src/mime/Makefile @@ -19,7 +19,7 @@ OBJS = \ $(mailcapobj) \ $(mimetypesobj) -all-l: libmime.a +all-local: libmime.a libmime.a: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/mime/backend/Makefile b/src/mime/backend/Makefile index 3cd5cde3..4273d66e 100644 --- a/src/mime/backend/Makefile +++ b/src/mime/backend/Makefile @@ -12,6 +12,6 @@ endif OBJS = common.o default.o $(mailcapobj) $(mimetypesobj) # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/network/Makefile b/src/network/Makefile index ceb21704..14920c76 100644 --- a/src/network/Makefile +++ b/src/network/Makefile @@ -10,7 +10,7 @@ SUBDIRS = $(ssldir) OBJS = connection.o dns.o progress.o socket.o state.o $(sslobj) -all-l: libnetwork.a +all-local: libnetwork.a libnetwork.a: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/network/ssl/Makefile b/src/network/ssl/Makefile index 59b7851e..5d1c16b3 100644 --- a/src/network/ssl/Makefile +++ b/src/network/ssl/Makefile @@ -6,6 +6,6 @@ INCLUDES += $(GNUTLS_CFLAGS) $(OPENSSL_CFLAGS) OBJS = ssl.o socket.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/osdep/Makefile b/src/osdep/Makefile index f9464681..908bb5e3 100644 --- a/src/osdep/Makefile +++ b/src/osdep/Makefile @@ -42,7 +42,7 @@ OBJS = \ $(unixobj) \ $(win32obj) -all-l: libosdep.a +all-local: libosdep.a libosdep.a: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/osdep/beos/Makefile b/src/osdep/beos/Makefile index 8cf8a150..98d33dc8 100644 --- a/src/osdep/beos/Makefile +++ b/src/osdep/beos/Makefile @@ -4,6 +4,6 @@ include $(path_to_top)/Makefile.config OBJS = beos.o overrides.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/osdep/os2/Makefile b/src/osdep/os2/Makefile index 41de0e7b..d07f4cb3 100644 --- a/src/osdep/os2/Makefile +++ b/src/osdep/os2/Makefile @@ -4,6 +4,6 @@ include $(path_to_top)/Makefile.config OBJS = os2.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/osdep/riscos/Makefile b/src/osdep/riscos/Makefile index c1406627..33b22cb9 100644 --- a/src/osdep/riscos/Makefile +++ b/src/osdep/riscos/Makefile @@ -4,6 +4,6 @@ include $(path_to_top)/Makefile.config OBJS = riscos.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/osdep/unix/Makefile b/src/osdep/unix/Makefile index 133d1b5f..8b948eb3 100644 --- a/src/osdep/unix/Makefile +++ b/src/osdep/unix/Makefile @@ -4,6 +4,6 @@ include $(path_to_top)/Makefile.config OBJS = unix.o bsd.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/osdep/win32/Makefile b/src/osdep/win32/Makefile index e2a8ea82..322fdb0e 100644 --- a/src/osdep/win32/Makefile +++ b/src/osdep/win32/Makefile @@ -4,6 +4,6 @@ include $(path_to_top)/Makefile.config OBJS = win32.o overrides.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/protocol/Makefile b/src/protocol/Makefile index 40402120..aafb23be 100644 --- a/src/protocol/Makefile +++ b/src/protocol/Makefile @@ -86,7 +86,7 @@ SUB_OBJS = \ $(smbobj) OBJS = about.o date.o header.o protocol.o proxy.o uri.o user.o $(SUB_OBJS) -all-l: libprotocol.a +all-local: libprotocol.a libprotocol.a: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/protocol/auth/Makefile b/src/protocol/auth/Makefile index 8b495cb6..d9d25706 100644 --- a/src/protocol/auth/Makefile +++ b/src/protocol/auth/Makefile @@ -7,6 +7,6 @@ INCLUDES += $(GNUTLS_CFLAGS) $(OPENSSL_CFLAGS) OBJS = auth.o dialogs.o digest.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/protocol/bittorrent/Makefile b/src/protocol/bittorrent/Makefile index 24153bed..4fa26391 100644 --- a/src/protocol/bittorrent/Makefile +++ b/src/protocol/bittorrent/Makefile @@ -6,6 +6,6 @@ INCLUDES += $(GNUTLS_CFLAGS) $(OPENSSL_CFLAGS) OBJS = bencoding.o bittorrent.o common.o connection.o dialogs.o peerconnect.o peerwire.o piececache.o tracker.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/protocol/file/Makefile b/src/protocol/file/Makefile index 49be1506..947dc0d7 100644 --- a/src/protocol/file/Makefile +++ b/src/protocol/file/Makefile @@ -8,6 +8,6 @@ endif OBJS = file.o $(cgiobj) # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/protocol/finger/Makefile b/src/protocol/finger/Makefile index 3fdf33b1..e0f6bab7 100644 --- a/src/protocol/finger/Makefile +++ b/src/protocol/finger/Makefile @@ -4,6 +4,6 @@ include $(path_to_top)/Makefile.config OBJS = finger.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/protocol/ftp/Makefile b/src/protocol/ftp/Makefile index a0ef4bd7..a4c6fac1 100644 --- a/src/protocol/ftp/Makefile +++ b/src/protocol/ftp/Makefile @@ -4,6 +4,6 @@ include $(path_to_top)/Makefile.config OBJS = ftp.o parse.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/protocol/gopher/Makefile b/src/protocol/gopher/Makefile index 74993cc8..4686e8c8 100644 --- a/src/protocol/gopher/Makefile +++ b/src/protocol/gopher/Makefile @@ -4,6 +4,6 @@ include $(path_to_top)/Makefile.config OBJS = gopher.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/protocol/http/Makefile b/src/protocol/http/Makefile index c2a9d667..fdf2b622 100644 --- a/src/protocol/http/Makefile +++ b/src/protocol/http/Makefile @@ -4,6 +4,6 @@ include $(path_to_top)/Makefile.config OBJS = blacklist.o codes.o http.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/protocol/nntp/Makefile b/src/protocol/nntp/Makefile index 7dbc37db..77c6882e 100644 --- a/src/protocol/nntp/Makefile +++ b/src/protocol/nntp/Makefile @@ -4,6 +4,6 @@ include $(path_to_top)/Makefile.config OBJS = nntp.o connection.o response.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/protocol/rewrite/Makefile b/src/protocol/rewrite/Makefile index 4b984161..f8d55568 100644 --- a/src/protocol/rewrite/Makefile +++ b/src/protocol/rewrite/Makefile @@ -4,6 +4,6 @@ include $(path_to_top)/Makefile.config OBJS = rewrite.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/protocol/smb/Makefile b/src/protocol/smb/Makefile index 12ce1ef5..61a6f713 100644 --- a/src/protocol/smb/Makefile +++ b/src/protocol/smb/Makefile @@ -4,6 +4,6 @@ include $(path_to_top)/Makefile.config OBJS = smb.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/scripting/Makefile b/src/scripting/Makefile index 5f8589a4..e2193e96 100644 --- a/src/scripting/Makefile +++ b/src/scripting/Makefile @@ -30,7 +30,7 @@ SUBDIRS = $(guiledir) $(luadir) $(perldir) $(pythondir) $(rubydir) OBJS = scripting.o $(guileobj) $(luaobj) $(perlobj) $(pythonobj) $(rubyobj) -all-l: libscripting.a +all-local: libscripting.a libscripting.a: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/scripting/guile/Makefile b/src/scripting/guile/Makefile index a5f5cc67..705144e6 100644 --- a/src/scripting/guile/Makefile +++ b/src/scripting/guile/Makefile @@ -6,6 +6,6 @@ INCLUDES += $(GUILE_CFLAGS) OBJS = guile.o hooks.o core.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/scripting/lua/Makefile b/src/scripting/lua/Makefile index aae8b23d..c5559242 100644 --- a/src/scripting/lua/Makefile +++ b/src/scripting/lua/Makefile @@ -6,6 +6,6 @@ INCLUDES += $(LUA_CFLAGS) OBJS = lua.o hooks.o core.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/scripting/perl/Makefile b/src/scripting/perl/Makefile index d2549cde..b0af1a5a 100644 --- a/src/scripting/perl/Makefile +++ b/src/scripting/perl/Makefile @@ -6,6 +6,6 @@ INCLUDES += $(PERL_CFLAGS) OBJS = perl.o hooks.o core.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/scripting/python/Makefile b/src/scripting/python/Makefile index 457b05ea..17f0fc00 100644 --- a/src/scripting/python/Makefile +++ b/src/scripting/python/Makefile @@ -6,6 +6,6 @@ INCLUDES += $(PYTHON_CFLAGS) OBJS = python.o hooks.o core.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/scripting/ruby/Makefile b/src/scripting/ruby/Makefile index a651deca..b9cd3beb 100644 --- a/src/scripting/ruby/Makefile +++ b/src/scripting/ruby/Makefile @@ -6,6 +6,6 @@ INCLUDES += $(RUBY_CFLAGS) OBJS = ruby.o hooks.o core.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/session/Makefile b/src/session/Makefile index 1495d623..8b1687b5 100644 --- a/src/session/Makefile +++ b/src/session/Makefile @@ -3,7 +3,7 @@ include $(path_to_top)/Makefile.config OBJS = download.o history.o location.o session.o task.o -all-l: libsession.a +all-local: libsession.a libsession.a: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/terminal/Makefile b/src/terminal/Makefile index 7b4a3193..8848365c 100644 --- a/src/terminal/Makefile +++ b/src/terminal/Makefile @@ -17,7 +17,7 @@ OBJS = \ terminal.o \ window.o -all-l: libterminal.a +all-local: libterminal.a libterminal.a: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/util/Makefile b/src/util/Makefile index fe6c3b67..b1d1d1a1 100644 --- a/src/util/Makefile +++ b/src/util/Makefile @@ -46,7 +46,7 @@ OBJS = \ $(scannerobj) \ $(sha1obj) -all-l: libutil.a +all-local: libutil.a libutil.a: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/viewer/Makefile b/src/viewer/Makefile index 00c12919..0e3431e3 100644 --- a/src/viewer/Makefile +++ b/src/viewer/Makefile @@ -20,7 +20,7 @@ OBJS = \ text/view.o \ text/vs.o -all-l: libviewer.a +all-local: libviewer.a libviewer.a: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/viewer/dump/Makefile b/src/viewer/dump/Makefile index b064418f..a80137d4 100644 --- a/src/viewer/dump/Makefile +++ b/src/viewer/dump/Makefile @@ -4,6 +4,6 @@ include $(path_to_top)/Makefile.config OBJS = dump.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib diff --git a/src/viewer/text/Makefile b/src/viewer/text/Makefile index 9509438e..1b1e167e 100644 --- a/src/viewer/text/Makefile +++ b/src/viewer/text/Makefile @@ -8,6 +8,6 @@ endif OBJS = draw.o form.o link.o $(marksobj) search.o textarea.o view.o vs.o # Do not forget to also add the .o to ../Makefile. Yes, it sucks. -all-l: $(OBJS) +all-local: $(OBJS) include $(path_to_top)/Makefile.lib