home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / apps / math / euler / source / makefile < prev    next >
Makefile  |  1993-03-23  |  1KB  |  47 lines

  1. # makefile für EULER
  2.  
  3. # Change 8x13 to your favorite text font.
  4. # Delete -DRS6000 on non IBM RS6000 machines.
  5.  
  6. CC=cc
  7. CFLAGS=-O -DFONT=\"8x13\" -DGFONT=\"8x13\" -DRS6000
  8.  
  9. euler: sysdepx.o edit.o mainloop.o express.o funcs.o matheh.o extend.o\
  10.         polynom.o helpf.o graphics.o makefile
  11.     $(CC) -o xeuler sysdepx.o edit.o mainloop.o express.o\
  12.         matheh.o extend.o polynom.o helpf.o funcs.o\
  13.         graphics.o -lm -lX11
  14.  
  15. sysdepx.o: header.h sysdep.h icon.h sysdepx.c
  16.  
  17. edit.o: header.h sysdep.h graphics.h
  18.  
  19. funcs.o: header.h sysdep.h funcs.h graphics.h
  20.  
  21. express.o: header.h sysdep.h funcs.h
  22.  
  23. funcs.o: header.h sysdep.h funcs.h matheh.h polynom.h helpf.h graphics.h
  24.  
  25. matheh.o: header.h sysdep.h matheh.h
  26.  
  27. extend.o: header.h
  28.  
  29. polynom.o: header.h polynom.h funcs.h matheh.h
  30.  
  31. helpf.o: header.h funcs.h helpf.h matheh.h
  32.  
  33. graphics.o: header.h graphics.h
  34.  
  35. mainloop.o: header.h sysdep.h funcs.h graphics.h
  36.  
  37. install:
  38.     mv xeuler ../progs/xeuler
  39.  
  40. tar:
  41.     rm -f euler.tar euler.tar.z
  42.     tar -cf euler.tar\
  43.         *.c *.h makefile readme.*\
  44.         ../progs/euler.doc ../progs/util.e\
  45.         ../progs/demo.e ../progs/help.e ../progs/euler.cfg
  46.     gzip euler.tar
  47. ə