mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-30 19:00:29 +08:00
091126fa28
the src/include tree, so that -I backend is no longer necessary anywhere. Also, clean up some bit rot in contrib tree.
25 lines
436 B
Makefile
25 lines
436 B
Makefile
# $Header: /cvsroot/pgsql/contrib/vacuumlo/Makefile,v 1.2 2000/05/29 05:44:32 tgl Exp $
|
|
|
|
SRCDIR= ../../src
|
|
|
|
include $(SRCDIR)/Makefile.global
|
|
|
|
CONTRIBDIR=$(LIBDIR)/contrib
|
|
|
|
CFLAGS+= -I$(LIBPQDIR)
|
|
|
|
TARGETS= vacuumlo
|
|
CLEANFILES+= $(TARGETS)
|
|
CURDIR=`pwd`
|
|
|
|
all:: $(TARGETS)
|
|
|
|
$(TARGETS): vacuumlo.o
|
|
$(CC) -o vacuumlo -L $(LIBDIR) -lpq -lcrypt vacuumlo.o
|
|
|
|
clean:
|
|
rm -f $(TARGETS) *.o
|
|
|
|
dist:
|
|
tar cf vacuumlo.tar README Makefile vacuumlo.c
|