home *** CD-ROM | disk | FTP | other *** search
/ gondwana.ecr.mu.oz.au/pub/ / Graphics.tar / Graphics / fermiVogle.tar.Z / fermiVogle.tar / devel / hershey / src / makefile.os2 < prev    next >
Makefile  |  1996-02-07  |  427b  |  17 lines

  1. # This file is the same as makefile.bcc except the -ml option
  2. # is removed from CFLAGS.
  3.  
  4. # NOTE: Borland C++ 1.0 for OS/2 does not compile h2v.exe correctly.
  5. # When h2v.exe runs, it only writes the first font.  It seems that
  6. # this is a bug with Borland's compiler.  GCC compiles this without
  7. # a problem.
  8.  
  9. CC = bcc
  10.  
  11. CFLAGS = -w-rvl -DPC -I..\..\src
  12.  
  13. all: h2v.exe 
  14.  
  15. h2v.exe: h2v.c getchar.c
  16.     $(CC) $(CFLAGS) h2v.c getchar.c
  17.