home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: SysTools / SysTools.zip / ft-beta.zip / freetype / lib / Makefile.in < prev    next >
Makefile  |  1997-10-06  |  1KB  |  46 lines

  1. # This file is part of the FreeType project.
  2. #
  3. # lib/Makefile.in
  4.  
  5. CC = @CC@
  6.  
  7. RANLIB = @RANLIB@
  8.  
  9. CFLAGS = @CFLAGS@ @XX_CFLAGS@ -I.. -Iextend -I.
  10.  
  11. SRC = ttapi.c    ttcache.c ttcalc.c  ttcmap.c   ttdebug.c tterror.c \
  12.       ttfile.c   ttfile2.c ttgload.c ttinterp.c ttlists.c ttload.c \
  13.       ttmemory.c ttmutex.c ttobjs.c  ttraster.c \
  14.       \
  15.       extend/ttextend.c extend/ttgasp.c extend/ttkern.c
  16.  
  17. OBJ = ttapi.o    ttcache.o ttcalc.o  ttcmap.o   ttdebug.o tterror.o \
  18.       ttfile.o   ttfile2.o ttgload.o ttinterp.o ttlists.o ttload.o \
  19.       ttmemory.o ttmutex.o ttobjs.o  ttraster.o \
  20.       \
  21.       extend/ttextend.o extend/ttgasp.o extend/ttkern.o
  22.  
  23.  
  24. all: libttf.a
  25.  
  26. libttf.a: $(OBJ) 
  27.     $(AR) rc $@ $(OBJ)
  28.     $(RANLIB) libttf.a
  29.  
  30. clean:
  31.     -$(RM) $(OBJ)
  32.  
  33. distclean: clean
  34.     -$(RM) dep.end libttf.a
  35.     -$(RM) *.orig *~ core
  36.     -$(RM) Makefile
  37.  
  38. # depend:
  39. #    $(CC) -E -M $(SRC) > dep.end
  40.  
  41. # ifeq (dep.end,$(wildcard dep.end))
  42. #   include dep.end
  43. # endif
  44.  
  45. # end of Makefile.in
  46.