#
# Makefile for making the object files to be loaded
# into the demo.  
# $Header: /usr/local/dev/postgres/mastertree/test/regress/RCS/makefile.source,v 1.3 1992/08/25 17:43:09 mer Exp $
#
PQFILES= create.pq

.SUFFIXES: .o .c .source .pq

all: $(PQFILES)

clean: 
	rm -f create.pq

clobber: clean
	rm -f makefile
	
set-up-1.pq: set-up-1.temp

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

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

#
# DEPENDENCIES 
# 
create.pq: create.source
