home *** CD-ROM | disk | FTP | other *** search
/ AMIGA PD 1 / AMIGA-PD-1.iso / Programme_zum_Heft / Anwendungen / Kurztests / PostScript / PsIntrp / Makefile < prev    next >
Makefile  |  1987-09-06  |  319b  |  13 lines

  1. OBJ =    console.o control.o dict.o ffpa.o files.o graphics.o lmath.o \
  2.     ps.o rmath.o simplex.o
  3.  
  4. .a.o:
  5.     assem -i ainc: -o $*.o $*.a
  6.  
  7. # Note:  Do not use "blink" to do the link, the result will not be
  8. # an Amiga executable, or at least that's what the machine says when
  9. # you try to run it!
  10.  
  11. ps:    $(OBJ)
  12.     alink with ps.link
  13.