home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / tfont10.zip / Makefile < prev    next >
Makefile  |  1996-08-13  |  296b  |  14 lines

  1. # Makefile for tFont, by Tomas Ögren
  2.  
  3. all: tFont.exe dosFont.exe
  4.  
  5. tFont.exe: tFont.c tFont.def
  6.     gcc -s -Zomf -Zmtd -O3 -o tFont.exe tFont.c tFont.def
  7.  
  8. standalone: tFont.c tFont.def
  9.     gcc -s -Zomf -Zsys -O3 -o tFont.exe tFont.c tFont.def
  10.  
  11. dosFont.exe: dosFont.c
  12.     bcc -mh -3 dosFont.c
  13.  
  14.