home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 2 / DATAFILE_PDCD2.iso / utilities2 / desklib / Libraries / PDriver / Makefile next >
Encoding:
Makefile  |  1993-07-14  |  572 b   |  20 lines

  1. # Project: PDriverLib
  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.Info o.CheckFeatu o.PageSize o.SelectJob o.CurrentJob \
  9.                o.EndJob o.AbortJob o.GiveRectan o.DrawPage o.CancelJob \
  10.                o.EnumerateJ o.GetRectang o.ScreenDump o.CancelJobW \
  11.                o.SelectIllu o.InsertIllu o.PrintrName
  12.  
  13.  
  14. PDriverLib:  $(Files)
  15.              $(do)
  16.  
  17. .c.o:;       $(CC) $(CCflags) $< -o $@
  18.  
  19. .s.o:;       objasm $(ObjAsmflags) -from $< -to $@
  20.