	# 
	# assuming we have the GCC compiler. if not available,
	# 'cc' should work in place of gcc.
	# 
	# option '-s' may be deleted (from the link) if there 
	# are any warnings about it. On every unix compiler 
	# I've used, it's used to strip additional debug info 
	# from the executable.
	#
gcc -c -DSUN fplot.c
gcc -c -DSUN fpout.c
gcc -c -DSUN fpcmd.c
gcc -c -DSUN fpset.c
gcc -c -DSUN fplib.c
gcc fplot.o fpout.o fpcmd.o fpset.o fplib.o -s -lm -o fplot
	#
        # build multiplt ...
	#
gcc multiplt.c -s -o multiplt
