home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / printer / gnuplot.lha / makefile.amg < prev    next >
Makefile  |  1991-07-04  |  1KB  |  42 lines

  1. HELPFILE = gnuplut.gih
  2. CC = lc
  3. CFLAGS = -b0 -dAMIGA_LC_5_1 -j85i -j88i
  4. OBJS = bitmap.o command.o eval.o graphics.o help.o internal.o misc.o parse.o\
  5.     plot.o scanner.o setshow.o standard.o term.o util.o version.o
  6. CSOURCE1 = command.c setshow.c 
  7. CSOURCE2 = help.c graphics.c internal.c 
  8. CSOURCE3 = misc.c eval.c parse.c plot.c scanner.c standard.c 
  9. CSOURCE4 = bitmap.c term.c util.c version.c
  10. CSOURCE5 = term/aed.trm term/cgi.trm term/dxy.trm term/eepic.trm \
  11.     term/epson.trm term/fig.trm term/hp26.trm term/hp2648.trm \
  12.     term/hpgl.trm term/hpljii.trm term/amiga.trm
  13. CSOURCE6 = term/imPcodes.h term/imagen.trm term/object.h \
  14.     term/iris4d.trm term/kyo.trm term/latex.trm term/pc.trm 
  15. CSOURCE7 = term/post.trm term/qms.trm term/regis.trm term/sun.trm \
  16.     term/t410x.trm term/tek.trm term/unixpc.trm term/unixplot.trm \
  17.     term/v384.trm term/x11.trm gnuplot_x11.c
  18.  
  19. all:    gnuplot
  20.  
  21. .c.o:
  22.     $(CC) $(CFLAGS) $<
  23.  
  24. gnuplot: $(OBJS)
  25.     blink with linkopt.amg
  26.  
  27. bitmap.o: bitmap.c bitmap.h plot.h
  28. command.o: command.c plot.h setshow.h help.h
  29. eval.o: eval.c plot.h
  30. graphics.o: graphics.c plot.h setshow.h
  31. help.o: help.c plot.h help.h
  32. internal.o: internal.c plot.h
  33. misc.o: misc.c plot.h setshow.h help.h
  34. parse.o: parse.c plot.h
  35. plot.o: plot.c plot.h setshow.h
  36. scanner.o: scanner.c plot.h
  37. setshow.o: setshow.c plot.h setshow.h
  38. standard.o: standard.c plot.h
  39. term.o: term.c term.h plot.h setshow.c bitmap.h $(CSOURCE5) $(CSOURCE6) $(CSOURCE7)
  40. util.o: util.c plot.h
  41. version.o: version.c
  42.