summaryrefslogtreecommitdiff
path: root/src/raster
diff options
context:
space:
mode:
authorDavid Turner <david@freetype.org>2020-05-18 09:16:12 +0200
committerWerner Lemberg <wl@gnu.org>2020-05-18 17:56:06 +0200
commit4eee13404dca62cdaed4e26b5523f0d8f92f2a1f (patch)
treec08e9ee29cd01e9fc42e41e94d0e8e11314ae305 /src/raster
parent3f70e6d20c82b28174096adcd0657b3c998b007b (diff)
downloadfreetype2-4eee13404dca62cdaed4e26b5523f0d8f92f2a1f.tar.gz
Remove Jamfile files from the tree.
These have not been used in a very, very long time, so better remove them. A corresponding patch will be submitted to the `freetype2-demos' repository. * src/Jamfile, src/*/Jamfile, Jamrules: Delete.
Diffstat (limited to 'src/raster')
-rw-r--r--src/raster/Jamfile32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/raster/Jamfile b/src/raster/Jamfile
deleted file mode 100644
index c001c2c89..000000000
--- a/src/raster/Jamfile
+++ /dev/null
@@ -1,32 +0,0 @@
-# FreeType 2 src/raster Jamfile
-#
-# Copyright (C) 2001-2020 by
-# David Turner, Robert Wilhelm, and Werner Lemberg.
-#
-# This file is part of the FreeType project, and may only be used, modified,
-# and distributed under the terms of the FreeType project license,
-# LICENSE.TXT. By continuing to use, modify, or distribute this file you
-# indicate that you have read the license and understand and accept it
-# fully.
-
-SubDir FT2_TOP $(FT2_SRC_DIR) raster ;
-
-{
- local _sources ;
-
- if $(FT2_MULTI)
- {
- _sources = ftraster
- ftrend1
- rastpic
- ;
- }
- else
- {
- _sources = raster ;
- }
-
- Library $(FT2_LIB) : $(_sources).c ;
-}
-
-# end of src/raster Jamfile