tor-browser

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

dos-def.mk (1111B)


      1 #
      2 # FreeType 2 DOS specific definitions
      3 #
      4 
      5 
      6 # Copyright (C) 1996-2025 by
      7 # David Turner, Robert Wilhelm, and Werner Lemberg.
      8 #
      9 # This file is part of the FreeType project, and may only be used, modified,
     10 # and distributed under the terms of the FreeType project license,
     11 # LICENSE.TXT.  By continuing to use, modify, or distribute this file you
     12 # indicate that you have read the license and understand and accept it
     13 # fully.
     14 
     15 
     16 DELETE       := del
     17 CAT          := type
     18 SEP          := $(strip \ )
     19 PLATFORM_DIR := $(TOP_DIR)/builds/dos
     20 PLATFORM     := dos
     21 
     22 # This is used for `make refdoc' and `make refdoc-venv'
     23 #
     24 BIN := Scripts
     25 
     26 # The executable file extension (for tools), *with* leading dot.
     27 #
     28 E := .exe
     29 
     30 # The directory where all library files are placed.
     31 #
     32 # By default, this is the same as $(OBJ_DIR); however, this can be changed
     33 # to suit particular needs.
     34 #
     35 LIB_DIR := $(OBJ_DIR)
     36 
     37 # The name of the final library file.  Note that the DOS-specific Makefile
     38 # uses a shorter (8.3) name.
     39 #
     40 LIBRARY := $(PROJECT)
     41 
     42 
     43 # The NO_OUTPUT macro is used to ignore the output of commands.
     44 #
     45 NO_OUTPUT = > nul
     46 
     47 
     48 # EOF