~vcs-imports/mammoth-replicator/trunk

« back to all changes in this revision

Viewing changes to src/backend/main/Makefile

  • Committer: alvherre
  • Date: 2005-12-16 21:24:52 UTC
  • Revision ID: svn-v4:db760fc0-0f08-0410-9d63-cc6633f64896:trunk:1
Initial import of the REL8_0_3 sources from the Pgsql CVS repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#-------------------------------------------------------------------------
 
2
#
 
3
# Makefile--
 
4
#    Makefile for main
 
5
#
 
6
# IDENTIFICATION
 
7
#    $PostgreSQL: pgsql/src/backend/main/Makefile,v 1.10 2003-11-29 19:51:49 pgsql Exp $
 
8
#
 
9
#-------------------------------------------------------------------------
 
10
 
 
11
subdir = src/backend/main
 
12
top_builddir = ../../..
 
13
include $(top_builddir)/src/Makefile.global
 
14
 
 
15
OBJS = main.o
 
16
 
 
17
all: SUBSYS.o
 
18
 
 
19
SUBSYS.o: $(OBJS)
 
20
        $(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
 
21
 
 
22
depend dep:
 
23
        $(CC) -MM $(CFLAGS) *.c >depend
 
24
 
 
25
clean: 
 
26
        rm -f SUBSYS.o $(OBJS) 
 
27
 
 
28
ifeq (depend,$(wildcard depend))
 
29
include depend
 
30
endif