#
# $Name: Downfits-1_1 $
#
# $Log: Makefile,v $
# Revision 1.1  2002/05/27 18:24:31  robert
# Remove example stuff which isn't included in distribution
#
# Revision 1.0  2002/01/06 18:12:19  robc
# First CVS entry
#

CC=gcc
CPP=g++
LIBS = -lcfitsio -lm
CPPFLAGS = -g -O2 -DLINUX

all: downfits

downfits_objs = parse.o regex.o splash.o tom.o

downfits: $(downfits_objs)
		  g++ $(downfits_objs) $(LIBS) -o downfits

install:
		  chown root downfits
		  chmod ugo+srx downfits
