diff options
| author | Tom Lane | 2002-04-15 05:22:04 +0000 |
|---|---|---|
| committer | Tom Lane | 2002-04-15 05:22:04 +0000 |
| commit | 71dc300a375f4932693b064b161a400448c9bc2e (patch) | |
| tree | ab20c095125a6eab33644befd187f936cf4fd093 /src/backend/commands/Makefile | |
| parent | ab1ead6b9761531787c78e0c80daf98b421ac06f (diff) | |
The contents of command.c, creatinh.c, define.c, remove.c and rename.c
have been divided according to the type of object manipulated - so ALTER
TABLE code is in tablecmds.c, aggregate commands in aggregatecmds.c and
so on.
A few common support routines remain in define.c (prototypes in
src/include/commands/defrem.h).
No code has been changed except for includes to reflect the new files.
The prototypes for aggregatecmds.c, functioncmds.c, operatorcmds.c,
and typecmds.c remain in src/include/commands/defrem.h.
From John Gray <[email protected]>
Diffstat (limited to 'src/backend/commands/Makefile')
| -rw-r--r-- | src/backend/commands/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/backend/commands/Makefile b/src/backend/commands/Makefile index b27e6d77b2a..190b0fd64f6 100644 --- a/src/backend/commands/Makefile +++ b/src/backend/commands/Makefile @@ -1,10 +1,10 @@ #------------------------------------------------------------------------- # # Makefile-- -# Makefile for commands +# Makefile for backend/commands # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/commands/Makefile,v 1.27 2001/07/13 22:55:59 tgl Exp $ +# $Header: /cvsroot/pgsql/src/backend/commands/Makefile,v 1.28 2002/04/15 05:22:03 tgl Exp $ # #------------------------------------------------------------------------- @@ -12,10 +12,11 @@ subdir = src/backend/commands top_builddir = ../../.. include $(top_builddir)/src/Makefile.global -OBJS = async.o creatinh.o command.o comment.o copy.o indexcmds.o define.o \ - remove.o rename.o vacuum.o vacuumlazy.o analyze.o view.o cluster.o \ - explain.o sequence.o trigger.o user.o proclang.o \ - dbcommands.o variable.o +OBJS = aggregatecmds.o analyze.o async.o cluster.o comment.o copy.o \ + dbcommands.o define.o explain.o functioncmds.o \ + indexcmds.o lockcmds.o operatorcmds.o portalcmds.o proclang.o \ + schemacmds.o sequence.o tablecmds.o trigger.o typecmds.o user.o \ + vacuum.o vacuumlazy.o variable.o view.o all: SUBSYS.o |
