tor-browser

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

Makefile.in (900B)


      1 include $(topsrcdir)/toolkit/mozapps/installer/package-name.mk
      2 include $(topsrcdir)/config/config.mk
      3 
      4 VPATH = @srcdir@
      5 
      6 CONFIG_DIR = $(topobjdir)/browser/installer/windows/instgen
      7 BIN_UTIL_DIR = $(topobjdir)/dist/bin
      8 
      9 TEST_STUB_INSTALLER_DEPS := \
     10  test_stub.nsi \
     11 stub.nsh \
     12 stub_shared_defs.nsh \
     13 $(topsrcdir)/toolkit/mozapps/installer/windows/nsis/common.nsh \
     14 shared.nsh \
     15 control_utils.nsh \
     16 postupdate_helper.nsh \
     17 defines.nsi.in \
     18 $(NULL)
     19 
     20 test_stub_installer:
     21 ifdef ENABLE_TESTS
     22 $(MAKE) $(BIN_UTIL_DIR)/test_stub_installer.exe
     23 else
     24 @echo Skipping build of test_stub_installer.exe since tests are not enabled
     25 endif # ENABLE_TESTS
     26 
     27 $(BIN_UTIL_DIR)/test_stub_installer.exe: $(TEST_STUB_INSTALLER_DEPS)
     28 $(MAKE) -C .. install_deps
     29 cd $(CONFIG_DIR) && $(MAKENSISU) -nocd -- $(CONFIG_DIR)/test_stub.nsi
     30 cp $(CONFIG_DIR)/test_stub_installer.exe $(BIN_UTIL_DIR)/test_stub_installer.exe