#####    Makefile for gspcompare
#####   Available systems: CDC, SGI, Linux, HP
#####
#####   Adapt this Makefile to one of these systems:
#####   1. IRIS Indigo
#####   2. HP-UX 9.2
#####   3. HP-UX 10.x
#####   4. Linux PC
#####     
#####   enable the commands of the system wanted by
#####   deleting the number sign in front of the commands
#####

####### IRIS Indigo at least R4000 and Irix 6.2

#CC=cc
#CFLAGS=-O -mips3  -DMEMORY -DSGI
#LDLIBS=

########## HP UX 9.2

#CC=cc
#CFLAGS=-O -Aa -DMEMORY -D_HPUX_SOURCE -DHP
#LDLIBS=-lm

########## Linux

#CC=gcc
#CFLAGS=-O -Wall -W -Werror
#LDLIBS=-lm

#########

gspcompare:	gspcompare.c
	        $(CC) $(CFLAGS) gspcompare.c $(LDLIBS) -o gspcompare
