#aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa #aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa #aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa #aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa # Start of File: .sn2002ap/makefile # makefile # # A ``makefile'' does the complilation and linking of code files to # create executables. # The ``makes'' and how to write and use them are given below # the system defines. # The hash mark (or number sign) means comment. ########################################################################## # System ``defines'' # Things the system wants to see. Don't ask me why. # Different systems want to see different things: only # the system manager (if they) know what they are. XLIB = -lX XLIB11 =-L /usr/X11R6/lib -lX11 # Libraries defined for the SM plotting package. LDFLAGS = /usr/local/lib/libplotsub.a /usr/local/lib/libdevices.a /usr/local/lib/libutils.a $(XLIB11) -lm ################################################################### # The ``makes'' # The second line of a ``make'' must be tab indented. # To make an executable, e.g., dampcos.x, type ``make dampcos.x''. # To run the executable type, e.g., ``dampcos.x''. # I also include program fragments in the list which do not # require direct ``makes'' themselves. It's just a convenient # place to list and briefly describe them. #23456789a123456789b123456789c123456789d123456789e123456789f123456789g12 # qup.f: Polarization and Stokes parameter analysis qup.o: qup.f f77 -g -C -c qup.f qup.x: qup.o f77 -g -C qup.o $(LDFLAGS) /data.x/jeffery/jef/plot/auxil.o \ /data.x/jeffery/jef/plot/simmongo.o -o qup.x #23456789a123456789b123456789c123456789d123456789e123456789f123456789g12 # trans.f: Transforms files to 2-column format trans.o: trans.f f77 -g -C -c trans.f trans.x: trans.o f77 -g -C trans.o /data.x/jeffery/jef/plot/auxil.o -o trans.x #23456789a123456789b123456789c123456789d123456789e123456789f123456789g12 # trans2.f: Transforms a file to standard qupa format trans2.o: trans2.f f77 -g -C -c trans2.f trans2.x: trans2.o f77 -g -C trans2.o /data.x/jeffery/jef/plot/auxil.o -o trans2.x #23456789a123456789b123456789c123456789d123456789e123456789f123456789g12 # # # # End of File # #