mirror of
https://github.com/postgres/postgres.git
synced 2025-11-07 19:06:32 +03:00
to one another. Sort out builddir vs srcdir variable namings. Remove some now obsoleted make variables.
34 lines
851 B
Makefile
34 lines
851 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile--
|
|
# Makefile for commands
|
|
#
|
|
# IDENTIFICATION
|
|
# $Header: /cvsroot/pgsql/src/backend/commands/Makefile,v 1.26 2000/08/31 16:09:53 petere Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
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 analyze.o view.o cluster.o \
|
|
explain.o sequence.o trigger.o user.o proclang.o \
|
|
dbcommands.o variable.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
|