BIN=		writemapfile
LIB=		# libraries to be placed in lib
DATADIR=	# directory under $(DSAP)/data in which to put $(DATA) files
DATA=		# data files to be placed in data/$(DATADIR)
INCLUDE=	# include files to be placed in include

MAN1=		# man pages for commands
MAN3=		# man pages for library routines
MAN5=		# man pages for file formats

CLEAN= 		# Extra files which should be removed during a "make clean"

cflags=		-g
fflags= 	-g
ldflags= 	# flags to linker/loader
ldlibs=		#

DSAPMAKE = /opt/dsap/3.4/DSAPMAKE
include $(DSAPMAKE)  	# This line must appear following the definitions above, 
			# and before the DIRS definition below..
DIRS=			# Omit this line to run make in subdirectories, or
			# fill in to run make only in certain subdirectories

OBJS=	writemapfile.o readbcar_.o readbounds.o hreadmap_.o hwrsegs_.o
$(BIN) : $(OBJS)
	$(CC) $(CFLAGS) -o $@ $(OBJS) $(LDFLAGS) $(LDLIBS)

foo	: foo.o readbounds.o
	$(FC) $(FFLAGS) -o foo foo.o readbounds.o $(LDFLAGS) $(LDLIBS) -lgrx -lX11

# $Id: Makefile,v 1.1.1.1 1997/04/12 04:18:44 danq Exp $ 
