home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / programs / fonts / r_z / t1_utils / Makefile < prev    next >
Makefile  |  1994-02-24  |  1KB  |  52 lines

  1. # Project:   t1utils
  2.  
  3.  
  4. # Toolflags:
  5. CCflags = -c -depend !Depend -IC: 
  6. Linkflags = -o $@
  7. CMHGflags = 
  8. LibFileflags = -c -o $@
  9. Squeezeflags = -o $@
  10. Pascalflags = -c -depend !Depend -throwback -IP:
  11. Drlinkflags = -aif -nounused -debimage -o $@ 
  12.  
  13.  
  14. # Final targets:
  15. @.unpost:   @.o.unpost @.o.getopt c:o.stubs 
  16.         link $(linkflags) @.o.unpost @.o.getopt c:o.stubs 
  17. @.t1disasm:   @.o.t1disasm @.o.getopt c:o.stubs 
  18.         link $(linkflags) @.o.t1disasm @.o.getopt c:o.stubs 
  19. @.t1binary:   @.o.t1binary @.o.getopt c:o.stubs 
  20.         link $(linkflags) @.o.t1binary @.o.getopt c:o.stubs 
  21. @.t1asm:   @.o.t1asm @.o.getopt c:o.stubs 
  22.         link $(linkflags) @.o.t1asm @.o.getopt c:o.stubs 
  23. @.t1ascii:   @.o.t1ascii c:o.stubs 
  24.         link $(linkflags) @.o.t1ascii c:o.stubs 
  25.  
  26.  
  27. # User-editable dependencies:
  28.  
  29. # Static dependencies:
  30. @.o.t1ascii:   @.c.t1ascii
  31.         cc $(ccflags) -o @.o.t1ascii @.c.t1ascii 
  32. @.o.t1asm:   @.c.t1asm
  33.         cc $(ccflags) -o @.o.t1asm @.c.t1asm 
  34. @.o.getopt:   @.c.getopt
  35.         cc $(ccflags) -o @.o.getopt @.c.getopt 
  36. @.o.t1binary:   @.c.t1binary
  37.         cc $(ccflags) -o @.o.t1binary @.c.t1binary 
  38. @.o.t1disasm:   @.c.t1disasm
  39.         cc $(ccflags) -o @.o.t1disasm @.c.t1disasm 
  40. @.o.unpost:   @.c.unpost
  41.         cc $(ccflags) -o @.o.unpost @.c.unpost 
  42.  
  43.  
  44. # Dynamic dependencies:
  45. o.unpost:    c.unpost
  46. o.getopt:    c.getopt
  47. o.getopt:    h.getopt
  48. o.t1disasm:    c.t1disasm
  49. o.t1binary:    c.t1binary
  50. o.t1asm:    c.t1asm
  51. o.t1ascii:    c.t1ascii
  52.