2e3 # # This makefile assumes you have the "vplot" graphics package. # If you don't have it, you will have to change the various # "vp_* ()" routines within domap.c to whatever graphical system # you do have. (Look inside domap for a very brief description.) # # Even if you do have Vplot installed, you will most likely have to # change the compile line a bit for your setup... # # You may have to modify the subroutines "twiddle16" and "twiddle32" # to get "domap" to work properly on your machine. This version works for # non byte-swapped machines. # domap: domap.c cd getpar; make cc -O -I/usr/local/sep/include -L/usr/local/sep/lib -o domap domap.c getpar/getparlib.a -lvplot -lm clean: \rm -f domap domap.o . 0