home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: SysTools / SysTools.zip / ft-beta.zip / freetype / tools / ttf2bdf / Makefile next >
Makefile  |  1997-10-06  |  2KB  |  55 lines

  1. #
  2. # $Id: Makefile,v 1.3 1997/09/28 16:24:10 xlwy01 Exp $
  3. #
  4.  
  5. #
  6. # Copyright 1996, 1997 Computing Research Labs, New Mexico State University
  7. #
  8. # Permission is hereby granted, free of charge, to any person obtaining a
  9. # copy of this software and associated documentation files (the "Software"),
  10. # to deal in the Software without restriction, including without limitation
  11. # the rights to use, copy, modify, merge, publish, distribute, sublicense,
  12. # and/or sell copies of the Software, and to permit persons to whom the
  13. # Software is furnished to do so, subject to the following conditions:
  14. #
  15. # The above copyright notice and this permission notice shall be included in
  16. # all copies or substantial portions of the Software.
  17. #
  18. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  21. # THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY
  22. # CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
  23. # OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
  24. # THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  25. #
  26.  
  27. CC = gcc
  28. CFLAGS = -Wall -g
  29.  
  30. SRCS = ttf2bdf.c
  31. OBJS = ttf2bdf.o
  32.  
  33. #
  34. # Point these at the FreeType source directories.
  35. #
  36. LIBDIR = ../../lib
  37. INCS = -I../.. -I$(LIBDIR) -I$(LIBDIR)/extend
  38. LIBS = -L$(LIBDIR) -lttf
  39.  
  40. all: ttf2bdf
  41.  
  42. ttf2bdf: $(OBJS)
  43.     $(PURIFY) $(CC) $(STATIC) $(CFLAGS) -o ttf2bdf $(OBJS) $(LIBS)
  44.  
  45. .c.o:
  46.     $(CC) $(CFLAGS) $(INCS) -c $< -o $@
  47.  
  48. clean:
  49.     /bin/rm -f *.o *BAK *CKP *~ a.out core
  50.  
  51. distclean: clean
  52.     /bin/rm -f ttf2bdf
  53.  
  54. # end of Makefile
  55.