home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 12 Font / 12-Font.zip / FONTUTIL.ZIP / makefile.dos < prev    next >
Makefile  |  1992-06-12  |  858b  |  32 lines

  1. # Makefile for type-1 utilities of I. Lee Hetherington (ilh@lcs.mit.edu)
  2. # for usage with Microsoft NMAKE, Microsoft C/C++ Compiler and MS-DOS
  3. # operating system.
  4. #
  5. # Author: Kai-Uwe Herbing (herbing@netmbx.netmbx.de)
  6. #
  7.  
  8. all:          lgetopt.obj sgetopt.obj  t1disasm.exe t1asm.exe \
  9.               t1ascii.exe t1binary.exe unpost.exe
  10.  
  11. lgetopt.obj:  getopt.c
  12.               $(CC) -AL -Fo$@ -Ox -W4 -c $**
  13.  
  14. sgetopt.obj:  getopt.c
  15.               $(CC) -AS -Fo$@ -Ox -W4 -c $**
  16.  
  17. t1disasm.exe: t1disasm.c
  18.               $(CC) -AS -Ox -W4 $**
  19.  
  20. t1asm.exe:    t1asm.c lgetopt.obj
  21.               $(CC) -AH -I. -Ox -W4 $**
  22.  
  23. t1ascii.exe:  t1ascii.c
  24.               $(CC) -AS -Ox -W4 $**
  25.  
  26. t1binary.exe: t1binary.c lgetopt.obj
  27.               $(CC) -AH -I. -Ox -W4 $**
  28.  
  29. unpost.exe:   unpost.c sgetopt.obj
  30.               $(CC) -AS -I. -Ox -W4 $**
  31.  
  32.