]> granicus.if.org Git - postgresql/blob - src/port/Makefile
04d9e0499404a3cf125b2ab52c6885af804b1b7b
[postgresql] / src / port / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # Makefile--
4 #    Makefile for the port-specific subsystem of the backend
5 #
6 # These files are used in other directories for portability on systems
7 # with broken/missing library files.
8
9 # IDENTIFICATION
10 #    $Header: /cvsroot/pgsql/src/port/Makefile,v 1.3 2002/07/27 20:10:05 petere Exp $
11 #
12 #-------------------------------------------------------------------------
13
14 subdir = src/port
15 top_builddir = ../..
16 include $(top_builddir)/src/Makefile.global
17
18 ifdef LIBOBJS
19 all: libpgport.a
20 endif
21
22 libpgport.a: $(LIBOBJS)
23         $(AR) crs $@ $^
24
25 clean distclean maintainer-clean:
26         rm -f libpgport.a $(LIBOBJS)