home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 12 Font / 12-Font.zip / FONTUTIL.ZIP / makefile.os2 < prev    next >
Makefile  |  1992-10-04  |  569b  |  24 lines

  1. # Makefile for type-1 utilities of I. Lee Hetherington (ilh@lcs.mit.edu)
  2. # for usage with GNU MAKE, EMX/GCC Compiler version 0.8e and OS/2 2.0
  3. # operating system.
  4. #
  5. CC          = gcc -Zmt -Zomf -O
  6.  
  7. all:        t1disasm.exe t1asm.exe t1ascii.exe t1binary.exe unpost.exe
  8.  
  9. t1disasm.exe:    t1disasm.c
  10.         $(CC) -o t1disasm.exe t1disasm.c
  11.  
  12. t1asm.exe:    t1asm.c
  13.         $(CC) -o t1asm.exe t1asm.c
  14.  
  15. t1ascii.exe:    t1ascii.c
  16.         $(CC) -o t1ascii.exe t1ascii.c
  17.  
  18. t1binary.exe:    t1binary.c
  19.         $(CC) -o t1binary.exe t1binary.c
  20.  
  21. unpost.exe:    unpost.c
  22.         $(CC) -o unpost.exe unpost.c
  23.  
  24.