mirror of
https://github.com/postgres/postgres.git
synced 2025-09-11 00:12:06 +03:00
It failed to remove a .o file during "make clean", and it lacked a .gitignore file entirely.
23 lines
490 B
Makefile
23 lines
490 B
Makefile
subdir = src/interfaces/libpq/test
|
|
top_builddir = ../../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
ifeq ($(PORTNAME), win32)
|
|
LDLIBS += -lws2_32
|
|
endif
|
|
|
|
override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS)
|
|
override LDLIBS := $(libpq_pgport) $(LDLIBS)
|
|
|
|
PROGS = uri-regress
|
|
|
|
all: $(PROGS)
|
|
|
|
installcheck: all
|
|
SRCDIR='$(top_srcdir)' SUBDIR='$(subdir)' \
|
|
$(PERL) $(top_srcdir)/$(subdir)/regress.pl
|
|
|
|
clean distclean maintainer-clean:
|
|
rm -f $(PROGS) *.o
|
|
rm -f regress.out regress.diff
|