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

  1. # This file is part of the FreeType project.
  2.  
  3. LIBDIR = lib
  4. TESTDIR = test
  5. TOOLSDIR = tools/ttf2bdf
  6.  
  7. all: ttlib tttest tttools
  8.  
  9. # we can't use the target names 'lib', 'test', etc.
  10. # because make will believe that the directories are
  11. # the targets and are up-to-date! Grrr... >:-(
  12.  
  13. ttlib:
  14.     $(MAKE) -C $(LIBDIR) all
  15.  
  16. tttest:
  17.     $(MAKE) -C $(TESTDIR) all
  18.  
  19. # Right now, there is only one tool in the FreeType distribution
  20. tttools:
  21.     $(MAKE) -C $(TOOLSDIR) all
  22.  
  23. clean:
  24.     $(MAKE) -C $(LIBDIR) clean
  25.     $(MAKE) -C $(TESTDIR) clean
  26.     $(MAKE) -C $(TOOLSDIR) clean
  27.  
  28. distclean:
  29.     $(MAKE) -C $(LIBDIR) distclean
  30.     $(MAKE) -C $(TESTDIR) distclean
  31.     $(MAKE) -C $(TOOLSDIR) distclean
  32.     $(RM) config.cache config.log config.status Makefile ft_conf.h
  33.  
  34. # end of Makefile.in
  35.