blob: 5a29b1468d848c01759e5c5e1e56d21ce13ff375 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#-------------------------------------------------------------------------
#
# Makefile--
# Makefile for tutorial/C-code
#
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/tutorial/Makefile,v 1.1.1.1 1996/07/09 06:22:33 scrappy Exp $
#
#-------------------------------------------------------------------------
MKDIR= ../mk
include $(MKDIR)/postgres.mk
VPATH:= $(VPATH):C-code
#
# build dynamically-loaded object files
#
DLOBJS= complex$(SLSUFF) funcs$(SLSUFF)
#
# ... plus test query inputs
#
CREATEFILES= $(DLOBJS:%=$(objdir)/%) \
advanced.sql basics.sql complex.sql funcs.sql syscat.sql
include $(MKDIR)/postgres.user.mk
CFLAGS+= -I$(srcdir)/backend
CLEANFILES+= $(notdir $(CREATEFILES))
all:: $(CREATEFILES)
|