From c97b4be9b9a32e08f843e446eca08910fc9415eb Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Wed, 18 Jan 2006 21:53:13 +0100 Subject: [PATCH] Move SUBDIRS and OBJS defining before their conditional defining --- src/protocol/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/protocol/Makefile b/src/protocol/Makefile index 71c65df79..c4bee0682 100644 --- a/src/protocol/Makefile +++ b/src/protocol/Makefile @@ -1,6 +1,8 @@ top_builddir=../.. include $(top_builddir)/Makefile.config +SUBDIRS = auth file http + SUBDIRS-$(CONFIG_BITTORRENT) += bittorrent SUBDIRS-$(CONFIG_FINGER) += finger SUBDIRS-$(CONFIG_FSP) += fsp @@ -10,13 +12,11 @@ SUBDIRS-$(CONFIG_NNTP) += nntp SUBDIRS-$(CONFIG_SMB) += smb SUBDIRS-$(CONFIG_URI_REWRITE) += rewrite -SUBDIRS = auth file http +OBJS = about.o date.o header.o protocol.o proxy.o uri.o user.o OBJS-$(CONFIG_DATA) += data.o OBJS-$(CONFIG_CGI) += common.o OBJS-$(CONFIG_FSP) += common.o OBJS-$(CONFIG_SMB) += common.o -OBJS = about.o date.o header.o protocol.o proxy.o uri.o user.o - include $(top_srcdir)/Makefile.lib