mirror of https://github.com/postgres/postgres
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
795 B
40 lines
795 B
|
30 years ago
|
#-------------------------------------------------------------------------
|
||
|
|
#
|
||
|
|
# 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)
|
||
|
|
|
||
|
|
|
||
|
|
|