# # Makefile for example programs # SRCDIR= ../.. include ../../Makefile.global CFLAGS+= -I$(LIBPQDIR) LDFLAGS+= -L$(LIBPQDIR) -lpq # # And where libpq goes, so goes the authentication stuff... # ifdef KRBVERS LDFLAGS+= $(KRBLIBS) CFLAGS+= $(KRBFLAGS) endif PROGS= testlibpq0 testlibpq1 testlibpq2 testlibpq3 testlibpq4 testlo all: $(PROGS) $(PROGS): % : %.c $(CC) $(CFLAGS) -o $@ $@.c $(LDFLAGS) clean: rm -f $(PROGS)