Document title: Sun/UNIX makefile for the UCLA-IGPP programs for NDADS ISEE1 and ISEE2 magnetometer datatypes MAG_4S_FF and MAG_1M_FF Project: ISEE1 and ISEE2 NDADS Datatype: MAG_4S_FF and MAG_1M_FF Super-EID: SOFTWARE There may be other documents also identified by this super-EID. NDADS filename: MAKEFILE. TRF entry: b46637.txt in NSSDC's controlled digital document library, Mar. 1998. Document text follows: ---------------------- ############################################################################### # * * # * makefile - Sun/UNIX makefile used by the "make" program to compile and * # * link the UCLA-IGPP programs to read and write out as ASCII the * # * 4-second and 60-second averaged magnetic field and ephemeris * # * flat files of the International Sun-Earth Explorers (ISEE) 1 * # * and 2 spacecraft of the United States National Aeronautics and * # * Space Adminstration (NASA). * # * * # * Copyright (c) 1975-94 Regents of the University of California. * # * All Rights Reserved. * # * * # * Redistribution and use in source and binary forms are permitted * # * provided that the above copyright notice and this paragraph are * # * duplicated in all such forms and that any documentation, advertising * # * materials, and other materials related to such distribution and use * # * acknowledge that the software was developed by the University of * # * California, Los Angeles. The name of the University may not be used * # * to endorse or promote products derived from this software without * # * specific prior written permission. THIS SOFTWARE IS PROVIDED "AS IS" * # * AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT * # * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * # * FOR A PARTICULAR PURPOSE. * # * * # * For information about this software please contact: * # * * # * Principal Investigator: * # * Christopher Russell * # * UCLA - Institute of Geophysics and Planetary Physics * # * 6871 Slichter Hall * # * Los Angeles, Ca. 90024-1567 * # * INTERNET e-mail: ctrussell@igpp.ucla.edu * # * NSI/DECnet e-mail: BRUNET::CTRUSSELL * # * Telephone: (310) 825-3188 * # * * # * Programmer: * # * Harry Herbert * # * UCLA - Institute of Geophysics and Planetary Physics * # * 5833 Slichter Hall * # * Los Angeles, Ca. 90024-1567 * # * INTERNET e-mail: hherbert@igpp.ucla.edu * # * NSI/DECnet e-mail: BRUNET::HARRY * # * Telephone: (310) 825-9030 * # * * ############################################################################### # # Define MAKE macros # ############################################################################### # Define compile and link macros for this makefile. # SHELL=/bin/sh FFLAGS= LDFLAGS= LDLIBS=-lm ############################################################################### # # Make everything # ############################################################################### # To build everything in this makefile type "make all". all: 60s2asc 4s2asc ############################################################################### # # Build 60s2asc # ############################################################################### # Build the program "60s2asc" which reads a UCLA-IGPP flat file of ISEE # 60-second averaged magnetometer and ephemeris data and writes it in ASCII # to a user specified file. # 60s2asc: 60s2asc.f ctime.c convert.c $(CC) $(CFLAGS) -c -Dsun ctime.c convert.c $(FC) $(FFLAGS) $(LDFLAGS) 60s2asc.f ctime.o convert.o $(LDLIBS) \ -o $(PWD)/60s2asc $(RM) 60s2asc.o ctime.o convert.o ############################################################################### # # Build 4s2asc # ############################################################################### # Build the program "4s2asc" which reads a UCLA-IGPP flat file of ISEE # 4-second averaged magnetometer and ephemeris data and writes it in ASCII # to a user specified file. # 4s2asc: 4s2asc.f ctime.c convert.c $(CC) $(CFLAGS) -c -Dsun ctime.c convert.c $(FC) $(FFLAGS) $(LDFLAGS) 4s2asc.f ctime.o convert.o $(LDLIBS) \ -o $(PWD)/4s2asc $(RM) 4s2asc.o ctime.o convert.o ###############################################################################