tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

Makefile.in (821B)


      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/.
      5 
      6 #! gmake
      7 
      8 MOD_DEPTH	= ../../..
      9 topsrcdir	= @top_srcdir@
     10 srcdir		= @srcdir@
     11 VPATH		= @srcdir@
     12 
     13 include $(MOD_DEPTH)/config/autoconf.mk
     14 
     15 include $(topsrcdir)/config/config.mk
     16 
     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)
     29 
     30 OBJS = $(addprefix $(OBJDIR)/,$(CXXSRCS:.cpp=.$(OBJ_SUFFIX)))
     31 
     32 TARGETS	= $(OBJS)
     33 
     34 INCLUDES = -I$(dist_includedir)
     35 
     36 DEFINES	+= -D_NSPR_BUILD_
     37 
     38 include $(topsrcdir)/config/rules.mk
     39 
     40 HEADERS = $(wildcard $(srcdir)/*.h)
     41 
     42 export:: $(TARGETS)