summaryrefslogtreecommitdiff
path: root/src/cff/Jamfile
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2001-04-06 07:05:50 +0000
committerWerner Lemberg <wl@gnu.org>2001-04-06 07:05:50 +0000
commitcbc9938e68fe74d19a4936c017183e84cbaeda79 (patch)
treebf257b22a300335e7aec7e08de98c4457a731b7e /src/cff/Jamfile
parenta1844e0927e0fd5230c59c1b3172ed5e5789d088 (diff)
downloadfreetype2-cbc9938e68fe74d19a4936c017183e84cbaeda79.tar.gz
* builds/os2/*.mk: These files have been forgotten to update to
the structure of similar makefiles. * builds/dos/*.mk: Ditto. * builds/ansi/*.mk: Ditto. * builds/win32/win32-def.mk (BUILD): Fix typo. * builds/compiler/*.mk (CLEAN_LIBRARY): Don't use NO_OUTPUT. This is already used in the link_*.mk files. * src/*/Jamfile: Slight changes to make files more cryptic.
Diffstat (limited to 'src/cff/Jamfile')
-rw-r--r--src/cff/Jamfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cff/Jamfile b/src/cff/Jamfile
index cf406f126..9ff721d8e 100644
--- a/src/cff/Jamfile
+++ b/src/cff/Jamfile
@@ -10,14 +10,14 @@ SubDirHdrs [ FT2_SubDir src cff ] ;
if $(FT2_MULTI)
{
- _sources = cffdrivr.c cffgload.c cffload.c cffobjs.c cffparse.c ;
+ _sources = cffdrivr cffgload cffload cffobjs cffparse ;
}
else
{
- _sources = cff.c ;
+ _sources = cff ;
}
- Library $(FT2_LIB) : $(_sources) ;
+ Library $(FT2_LIB) : $(_sources).c ;
}
# end of src/cff Jamfile