postgresql/src/utils/Makefile

33 lines
692 B
Makefile
Raw Normal View History

2002-11-01 21:00:35 -05:00
#-------------------------------------------------------------------------
#
# Makefile for utils
#
# $PostgreSQL: pgsql/src/utils/Makefile,v 1.21 2004/07/30 12:26:40 petere Exp $
2002-11-01 21:00:35 -05:00
#
# dllinit.o is only built on Win32 platform.
#
#-------------------------------------------------------------------------
subdir = src/utils
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
ifdef DLLINIT
2002-11-01 21:00:35 -05:00
all:
install: all installdirs
$(INSTALL_DATA) dllinit.o $(DESTDIR)$(pgxsdir)/$(subdir)/
installdirs:
$(mkinstalldirs) $(DESTDIR)$(pgxsdir)/$(subdir)
uninstall:
rm -f $(DESTDIR)$(pgxsdir)/$(subdir)/dllinit.o
2002-11-01 21:00:35 -05:00
clean distclean maintainer-clean:
rm -f dllinit.o
endif # not DLLINIT