head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	96.07.31.02.28.18;	author scrappy;	state dead;
branches;
next	1.1;

1.1
date	96.07.23.03.13.33;	author scrappy;	state Exp;
branches;
next	;


desc
@@


1.2
log
@already exists in the contrib directory
@
text
@#
# Makefile
#
#
TARGET = pginsert
CFLAGS = -g -Wall -I/u/postgres95/include
LIBS = -L/u/postgres95/lib -lpq

$(TARGET) : pginsert.o pginterface.o halt.o
	$(CC) -o $(TARGET) $(XFLAGS) $(CFLAGS) \
		 pginsert.o pginterface.o halt.o $(LIBS)

clean:
	rm -f *.o $(TARGET) log core

install:
	make clean
	make CFLAGS=-O
	install -s -o bin -g bin $(TARGET) /usr/local/bin
@


1.1
log
@More merge's from Dr. George's sourec tree
@
text
@@
