1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

pginterface cleanup

This commit is contained in:
Bruce Momjian
1998-04-23 17:25:29 +00:00
parent 04bd26103e
commit 491b76019e
3 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,7 @@
# #
PGINTERFACE = pginterface.o halt.o PGINTERFACE = pginterface.o halt.o
TARGET = pginsert pgwordcount pgnulltest TARGET = pginsert pgwordcount pgnulltest
CFLAGS = -g -fpic -Wall -I. -I../../src/interfaces/libpq -I/usr/local/pgsql/include CFLAGS = -g -Wall -I. -I../../src/interfaces/libpq -I/usr/local/pgsql/include
LDFLAGS = -L/usr/local/pgsql/lib -lpq LDFLAGS = -L/usr/local/pgsql/lib -lpq
all : $(TARGET) all : $(TARGET)

View File

@ -4,6 +4,7 @@
*/ */
#include <stdio.h> #include <stdio.h>
#include <time.h>
#include <libpq-fe.h> #include <libpq-fe.h>
#include "halt.h" #include "halt.h"
#include "pginterface.h" #include "pginterface.h"

View File

@ -6,6 +6,7 @@
#define TEST_NON_NULLS #define TEST_NON_NULLS
#include <stdio.h> #include <stdio.h>
#include <time.h>
#include <halt.h> #include <halt.h>
#include <libpq-fe.h> #include <libpq-fe.h>
#include <pginterface.h> #include <pginterface.h>