diff options
| author | Marc G. Fournier | 1998-10-01 03:38:45 +0000 |
|---|---|---|
| committer | Marc G. Fournier | 1998-10-01 03:38:45 +0000 |
| commit | 2074b5f1adbb06d1131dbf28365c4ebfe54bfb00 (patch) | |
| tree | 0938b56cb4bca4a46efebe68d456b7384a278194 /src/pl | |
| parent | d33bbb5b1f6ad33da866917d43e0a565d5b92b0b (diff) | |
failed to add some of Jan's files :(
Diffstat (limited to 'src/pl')
| -rw-r--r-- | src/pl/Makefile | 23 | ||||
| -rw-r--r-- | src/pl/plpgsql/Makefile | 20 |
2 files changed, 43 insertions, 0 deletions
diff --git a/src/pl/Makefile b/src/pl/Makefile new file mode 100644 index 00000000000..019da866f11 --- /dev/null +++ b/src/pl/Makefile @@ -0,0 +1,23 @@ +#------------------------------------------------------------------------- +# +# Makefile +# Makefile for src/pl (procedural languages) +# +# Copyright (c) 1994, Regents of the University of California +# +# +# IDENTIFICATION +# $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.1 1998/10/01 03:38:30 scrappy Exp $ +# +#------------------------------------------------------------------------- + +SRCDIR= .. +include $(SRCDIR)/Makefile.global + + +.DEFAULT all install clean dep depend distclean: + $(MAKE) -C plpgsql $@ +ifeq ($(USE_TCL), true) + $(MAKE) -C tcl $@ +endif + diff --git a/src/pl/plpgsql/Makefile b/src/pl/plpgsql/Makefile new file mode 100644 index 00000000000..f79cacb4aec --- /dev/null +++ b/src/pl/plpgsql/Makefile @@ -0,0 +1,20 @@ +#------------------------------------------------------------------------- +# +# Makefile +# Makefile for src/pl/plpgsql (PostgreSQL's SQL procedural language) +# +# Copyright (c) 1994, Regents of the University of California +# +# +# IDENTIFICATION +# $Header: /cvsroot/pgsql/src/pl/plpgsql/Makefile,v 1.1 1998/10/01 03:38:33 scrappy Exp $ +# +#------------------------------------------------------------------------- + +SRCDIR= ../.. +include $(SRCDIR)/Makefile.global + + +.DEFAULT all install clean dep depend distclean: + -$(MAKE) -C src $@ + |
