home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 2 / DATAFILE_PDCD2.iso / utilities2 / desklib / Libraries / Font / Makefile < prev   
Encoding:
Makefile  |  1993-07-14  |  607 b   |  19 lines

  1. # Project: FontLib
  2.  
  3. .SUFFIXES:   .c .s .o
  4. CC           = cc
  5. CCflags      = -c -IDeskLib:,C: $(x_cflags)
  6. ObjAsmflags  = -Stamp -NoCache -CloseExec -Quit $(x_aflags)
  7.  
  8. Files        = o.Font00 o.Font01 o.Font02 o.Font03 o.Font04 o.Font05 \
  9.                o.Font06 o.Font07 o.Font08 o.Font09 o.Font0a o.Font0b \
  10.                o.Font0c o.Font0d o.Font0e o.Font0f o.Font10 o.Font11 \
  11.                o.Font12 o.Font13 o.Font14 o.Font15 o.Font16 o.Font17 \
  12.                o.LoseAll
  13.  
  14. FontLib:     $(Files)
  15.              $(do)
  16.  
  17. .s.o:;       objasm $(ObjAsmflags) -from $< -to $@
  18. .c.o:;       $(CC) $(CCflags) $< -o $@
  19.