tor-browser

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

unixddef.mk (973B)


      1 #
      2 # FreeType 2 configuration rules templates for
      3 # development under Unix with no configure script (gcc only)
      4 #
      5 
      6 
      7 # Copyright (C) 1996-2025 by
      8 # David Turner, Robert Wilhelm, and Werner Lemberg.
      9 #
     10 # This file is part of the FreeType project, and may only be used, modified,
     11 # and distributed under the terms of the FreeType project license,
     12 # LICENSE.TXT.  By continuing to use, modify, or distribute this file you
     13 # indicate that you have read the license and understand and accept it
     14 # fully.
     15 
     16 
     17 TOP_DIR := $(shell cd $(TOP_DIR); pwd)
     18 OBJ_DIR := $(shell cd $(OBJ_DIR); pwd)
     19 
     20 PLATFORM := unix
     21 
     22 DELETE := rm -f
     23 CAT    := cat
     24 SEP    := /
     25 
     26 # This is used for `make refdoc' and `make refdoc-venv'
     27 #
     28 BIN := bin
     29 
     30 
     31 # library file name
     32 #
     33 LIBRARY := lib$(PROJECT)
     34 
     35 
     36 # The directory where all library files are placed.
     37 #
     38 # By default, this is the same as $(OBJ_DIR); however, this can be changed
     39 # to suit particular needs.
     40 #
     41 LIB_DIR := $(OBJ_DIR)
     42 
     43 
     44 NO_OUTPUT := 2> /dev/null
     45 
     46 # EOF