#
# makefile.slice
#
# Author: DGL at BYU, 23 June 2003
#
# This is a sample makefile for slice.c, a program to illustrate
# how to generate 3 dB slice contours.
#
# This make file was written for an HPUX platform.
# Changes to this makefile may be required before it will
# work properly on your system.
#

# Change "HDF" to match the location of the HDF library
# on your system 

HDF=/auto/cers0/long/

CC=cc

CFLAGS=	-Aa -O -I$(HDF)/include

LDFLAGS= -L$(HDF)/lib -lmfhdf -ldf -ljpeg -lz -lm

EXE=	slice

SRCS=	slice.c

#

all:	$(EXE)

install: $(EXE)

slice: slice.o
	$(CC) -o $@ $(CFLAGS) slice.o $(LDFLAGS)

man:

clean:
	@rm -f core
	rm -f $(EXE)
	rm -f *.o




