home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: SysTools / SysTools.zip / ft-beta.zip / freetype / lib / arch / os2 / Makefile.icc < prev   
Makefile  |  1997-10-06  |  824b  |  36 lines

  1. # This file is part of the FreeType project.
  2. #
  3. # It builds the library and test programs for IBM VisualAge C++ under OS/2.
  4. #
  5. # You will need nmake.
  6. #
  7. # Use this file while in the lib directory with the following statement:
  8. #
  9. #   nmake -f arch/os2/Makefile.icc
  10.  
  11. CC = icc
  12. CFLAGS = -O -Ti+ -Iarch\os2 -I. -Iextend
  13.  
  14. SRC = ttapi.c    ttcache.c ttcalc.c  ttcmap.c   ttdebug.c tterror.c \
  15.       ttfile.c   ttfile2.c ttgload.c ttinterp.c ttlists.c ttload.c \
  16.       ttmemory.c ttmutex.c ttobjs.c  ttraster.c \
  17.       \
  18.       extend/ttextend.c extend/ttgasp.c extend/ttkern.c
  19.  
  20. OBJ = $(SRC:.c=.obj)
  21.  
  22.  
  23. all: libttf.lib
  24.  
  25. libttf.lib: $(OBJ)
  26.         !ilib /nologo /noignorecase $@ -+$?,,
  27.  
  28. clean:
  29.         -del *.obj
  30.         -del extend\*.obj
  31.  
  32. distclean: clean
  33.         -del libttf.lib
  34.  
  35. # end of Makefile.icc
  36.