mirror of
https://github.com/postgres/postgres.git
synced 2025-08-21 10:42:50 +03:00
There are various things left to do: contrib dbsize and oid2name modules need work, and so does the documentation. Also someone should think about COMMENT ON TABLESPACE and maybe RENAME TABLESPACE. Also initlocation is dead, it just doesn't know it yet. Gavin Sherry and Tom Lane.
37 lines
985 B
Makefile
37 lines
985 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile--
|
|
# Makefile for backend/commands
|
|
#
|
|
# IDENTIFICATION
|
|
# $PostgreSQL: pgsql/src/backend/commands/Makefile,v 1.34 2004/06/18 06:13:22 tgl Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/backend/commands
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
OBJS = aggregatecmds.o alter.o analyze.o async.o cluster.o comment.o \
|
|
conversioncmds.o copy.o \
|
|
dbcommands.o define.o explain.o functioncmds.o \
|
|
indexcmds.o lockcmds.o operatorcmds.o opclasscmds.o \
|
|
portalcmds.o prepare.o proclang.o \
|
|
schemacmds.o sequence.o tablecmds.o tablespace.o trigger.o \
|
|
typecmds.o user.o vacuum.o vacuumlazy.o variable.o view.o
|
|
|
|
all: SUBSYS.o
|
|
|
|
SUBSYS.o: $(OBJS)
|
|
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
|
|
|
|
depend dep:
|
|
$(CC) -MM $(CFLAGS) *.c >depend
|
|
|
|
clean:
|
|
rm -f SUBSYS.o $(OBJS)
|
|
|
|
ifeq (depend,$(wildcard depend))
|
|
include depend
|
|
endif
|