# You must modify the lines marked "# ==>". # # # ==> Uncomment the line with your system type on it. # fix32luf has been tested on SUM, UNICOS, and IRIS4 MACHINE = SUN #MACHINE = UNICOS #MACHINE = IRIS4 #MACHINE = APOLLO #MACHINE = IBM6000 #MACHINE = CONVEX #MACHINE = VMS #MACHINE = MIPSEL #MACHINE = MAC #MACHINE = PC #MACHINE = HP9000 # ==> specify directories in which to store HDF include files, # HDF 3.2r3 and 3.2r4 libraries # HDFINC=../include HDFLIB=../lib # ==> specify your C compiler CC=cc CFLAGS= -g -D${MACHINE} # ==> For the IRIS and INDIGO, uncomment the following line #CFLAGS= -g -D${MACHINE} -ansi RM=/bin/rm RMFLAGS=-f all: fix32luf luftest fix32luf: fix32luf.c hfile.h hdf.h herr.h hproto.h hdfi.h dfsd.h $(CC) $(CFLAGS) -I$(HDFINC) fix32luf.c $(HDFLIB)/libdf.a -o fix32luf # ==> r3libdf.a is HDF 3.2r3 library luftest: luftest.c hdf.h $(CC) $(CFLAGS) -I$(HDFINC) luftest.c $(HDFLIB)/r3libdf.a -o luftest