Wed, 31 Dec 2014 06:55:46 +0100
Added tag TORBROWSER_REPLICA for changeset 6474c204b198
1 #
2 # This Source Code Form is subject to the terms of the Mozilla Public
3 # License, v. 2.0. If a copy of the MPL was not distributed with this
4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 #! gmake
8 MOD_DEPTH = ../../..
9 topsrcdir = @top_srcdir@
10 srcdir = @srcdir@
11 VPATH = @srcdir@
13 include $(MOD_DEPTH)/config/autoconf.mk
15 include $(topsrcdir)/config/config.mk
17 CXXSRCS = \
18 rcbase.cpp \
19 rccv.cpp \
20 rcfileio.cpp \
21 rcinrval.cpp \
22 rcio.cpp \
23 rclock.cpp \
24 rcnetdb.cpp \
25 rcnetio.cpp \
26 rcthread.cpp \
27 rctime.cpp \
28 $(NULL)
30 OBJS = $(addprefix $(OBJDIR)/,$(CXXSRCS:.cpp=.$(OBJ_SUFFIX)))
32 TARGETS = $(OBJS)
34 INCLUDES = -I$(dist_includedir)
36 DEFINES += -D_NSPR_BUILD_
38 include $(topsrcdir)/config/rules.mk
40 HEADERS = $(wildcard $(srcdir)/*.h)
42 export:: $(TARGETS)