summaryrefslogtreecommitdiff
path: root/Build/source/libs/freetype/freetype-1.5/test/arch/msdos/Makefile.gcc
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/freetype/freetype-1.5/test/arch/msdos/Makefile.gcc')
-rw-r--r--Build/source/libs/freetype/freetype-1.5/test/arch/msdos/Makefile.gcc151
1 files changed, 0 insertions, 151 deletions
diff --git a/Build/source/libs/freetype/freetype-1.5/test/arch/msdos/Makefile.gcc b/Build/source/libs/freetype/freetype-1.5/test/arch/msdos/Makefile.gcc
deleted file mode 100644
index 64a9dd35279..00000000000
--- a/Build/source/libs/freetype/freetype-1.5/test/arch/msdos/Makefile.gcc
+++ /dev/null
@@ -1,151 +0,0 @@
-# This file is part of the FreeType project.
-#
-# It builds the library and test programs for emx-gcc and djgpp under MSDOS.
-#
-# You will need a recent GNU make DOS port.
-#
-# Use this file while in the 'test' directory with the following statements:
-#
-# make -f arch/msdos/Makefile.gcc depend
-# make -f arch/msdos/Makefile.gcc
-#
-#
-# If you have the GNU gettext package installed with DJGPP, you can also try
-#
-# make -f arch/msdos/Makefile.gcc HAVE_GETTEXT
-#
-# Note that this version takes in account new versions of GNU gettext,
-# which in turn requires the iconv library. If you have an old version
-# of gettext and don't have the iconv library, just erase the `-l iconv'.
-#
-# Also take a look at the lib Makefile (at ../lib/arch/msdos/Makefile.gcc),
-# about the need to have the path to the *.mo files correct.
-#
-#
-# Copyright 1996-2002 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.
-
-ARCH = arch/msdos
-FT_MAKEFILE = $(ARCH)/Makefile.gcc
-
-CC = gcc
-
-LIBDIR = ../lib
-INCDIRS = -I$(LIBDIR) -I$(LIBDIR)/$(ARCH) -I. -I$(LIBDIR)/extend
-
-ifndef GETTEXT
-GETTEXT=NO_GETTEXT
-endif
-
-CFLAGS = -Wall -ansi -O2 -g $(INCDIRS) -D$(GETTEXT)
-# CFLAGS = -ansi -Wall -O2 -s $(INCDIRS) -D$(GETTEXT)
-
-
-# full-screen MSDOS driver
-GDRIVER = $(ARCH)/gfs_dos.c $(ARCH)/gmain_dj.c
-
-SRC = arabic.c \
- common.c \
- textdisp.c \
- ftdump.c \
- fterror.c \
- ftlint.c \
- ftmetric.c \
- ftsbit.c \
- ftstring.c \
- ftstrpnm.c \
- ftstrtto.c \
- fttimer.c \
- ftview.c \
- ftzoom.c
-
-GSRC = display.c blitter.c $(GDRIVER)
-GOBJ = $(GSRC:.c=.o)
-
-
-%.o: %.c
- $(CC) $(CFLAGS) -c -o $@ $<
-
-
-ifeq ($(GETTEXT),HAVE_GETTEXT)
-%.exe:
- $(CC) $(CFLAGS) -o $@ $^ -lintl -liconv
-# Remove `-l iconv' above if you have an old version
-# of GNU gettext (like 0.10.35) and no iconv library.
-else
-%.exe:
- $(CC) $(CFLAGS) -o $@ $^
-endif
-
-
-EXEFILES = ftdump.exe \
- fterror.exe \
- ftlint.exe \
- ftmetric.exe \
- ftsbit.exe \
- ftstring.exe \
- ftstrpnm.exe \
- ftstrtto.exe \
- fttimer.exe \
- ftview.exe \
- ftzoom.exe
-
-.PHONY: all debug freetype freetype_debug \
- clean distclean do_clean depend
-
-
-all: freetype $(EXEFILES)
-
-debug: freetype_debug $(EXEFILES)
-
-HAVE_GETTEXT:
- $(MAKE) -f $(FT_MAKEFILE) GETTEXT=HAVE_GETTEXT all
-
-freetype:
- $(MAKE) -C $(LIBDIR) -f $(FT_MAKEFILE) all
-
-freetype_debug:
- $(MAKE) -C $(LIBDIR) -f $(FT_MAKEFILE) debug
-
-ftzoom.exe: $(GOBJ) ftzoom.o common.o $(LIBDIR)/libttf.a
-ftview.exe: $(GOBJ) ftview.o common.o $(LIBDIR)/libttf.a
-ftlint.exe: ftlint.o common.o $(LIBDIR)/libttf.a
-ftdump.exe: ftdump.o common.o $(LIBDIR)/libttf.a
-fterror.exe: fterror.o common.o $(LIBDIR)/libttf.a
-ftstring.exe: $(GOBJ) ftstring.o common.o $(LIBDIR)/libttf.a
-fttimer.exe: $(GOBJ) fttimer.o common.o $(LIBDIR)/libttf.a
-ftstrpnm.exe: ftstrpnm.o common.o $(LIBDIR)/libttf.a
-ftsbit.exe: ftsbit.o common.o textdisp.o $(LIBDIR)/libttf.a
-ftmetric.exe: ftmetric.o common.o textdisp.o $(LIBDIR)/libttf.a
-ftstrtto.exe: $(GOBJ) ftstrtto.o common.o arabic.o $(LIBDIR)/libttf.a
-
-
-clean: do_clean
- $(MAKE) -C $(LIBDIR) -f $(FT_MAKEFILE) clean
-
-distclean: do_clean
- $(MAKE) -C $(LIBDIR) -f $(FT_MAKEFILE) distclean
- -del dep.end
- -del *.exe
- -del core
-
-do_clean:
- -del *.o
- -del response
- -del $(ARCH)\gfs_dos.o
-
-depend: $(SRC) $(GSRC)
- $(MAKE) -C $(LIBDIR) -f $(FT_MAKEFILE) depend
- $(CC) -E -MM $(INCDIRS) $^ > dep.end
-
-ifeq (dep.end,$(wildcard dep.end))
- include dep.end
-endif
-
-# end of Makefile.gcc