Blame src/psnames/Jamfile

Packit cf904d
# FreeType 2 src/psnames Jamfile
Packit cf904d
#
Packit cf904d
# Copyright 2001-2017 by
Packit cf904d
# David Turner, Robert Wilhelm, and Werner Lemberg.
Packit cf904d
#
Packit cf904d
# This file is part of the FreeType project, and may only be used, modified,
Packit cf904d
# and distributed under the terms of the FreeType project license,
Packit cf904d
# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
Packit cf904d
# indicate that you have read the license and understand and accept it
Packit cf904d
# fully.
Packit cf904d
Packit cf904d
SubDir  FT2_TOP $(FT2_SRC_DIR) psnames ;
Packit cf904d
Packit cf904d
{
Packit cf904d
  local  _sources ;
Packit cf904d
Packit cf904d
  if $(FT2_MULTI)
Packit cf904d
  {
Packit cf904d
    _sources = psmodule
Packit cf904d
               pspic
Packit cf904d
               ;
Packit cf904d
  }
Packit cf904d
  else
Packit cf904d
  {
Packit cf904d
    _sources = psnames ;
Packit cf904d
  }
Packit cf904d
Packit cf904d
  Library  $(FT2_LIB) : $(_sources).c ;
Packit cf904d
}
Packit cf904d
Packit cf904d
# end of src/psnames Jamfile