#
# Makefile for making the object files to be loaded
# into the demo.  
# $Header: /usr/local/dev/postgres/mastertree/test/regress/funcs/RCS/makefile.source,v 1.2 1992/08/18 00:19:52 mer Exp $
#
.SUFFIXES: .o .c .temp .pq

all: regress.o
	@chmod 444 regress.o

clean: 
	rm -f *.o *.pq

set-up-1.pq: set-up-1.temp

.temp.pq:
	-@ echo "producing the setup script $(@F)" ; \
	C=`pwd`; sed -e "s:_CWD_:$$C:" < $(<F) > $(@F)

.c.o:
	cc  $(DEMOCCOPTS) -I../../../src/lib/H -c $(<F)


#
# DEPENDENCIES (generated, do not modify by hand)
# 
regress.o: regress.c
