Skip to content

Commit 2074b5f

Browse files
committed
failed to add some of Jan's files :(
1 parent d33bbb5 commit 2074b5f

File tree

6 files changed

+2805
-0
lines changed

6 files changed

+2805
-0
lines changed

src/pl/Makefile

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#-------------------------------------------------------------------------
2+
#
3+
# Makefile
4+
# Makefile for src/pl (procedural languages)
5+
#
6+
# Copyright (c) 1994, Regents of the University of California
7+
#
8+
#
9+
# IDENTIFICATION
10+
# $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.1 1998/10/01 03:38:30 scrappy Exp $
11+
#
12+
#-------------------------------------------------------------------------
13+
14+
SRCDIR= ..
15+
include $(SRCDIR)/Makefile.global
16+
17+
18+
.DEFAULT all install clean dep depend distclean:
19+
$(MAKE) -C plpgsql $@
20+
ifeq ($(USE_TCL), true)
21+
$(MAKE) -C tcl $@
22+
endif
23+

src/pl/plpgsql/Makefile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#-------------------------------------------------------------------------
2+
#
3+
# Makefile
4+
# Makefile for src/pl/plpgsql (PostgreSQL's SQL procedural language)
5+
#
6+
# Copyright (c) 1994, Regents of the University of California
7+
#
8+
#
9+
# IDENTIFICATION
10+
# $Header: /cvsroot/pgsql/src/pl/plpgsql/Makefile,v 1.1 1998/10/01 03:38:33 scrappy Exp $
11+
#
12+
#-------------------------------------------------------------------------
13+
14+
SRCDIR= ../..
15+
include $(SRCDIR)/Makefile.global
16+
17+
18+
.DEFAULT all install clean dep depend distclean:
19+
-$(MAKE) -C src $@
20+

0 commit comments

Comments
 (0)