blob: 4602c294f62f80282e1aeb7e91837973a4f5b909 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#-------------------------------------------------------------------------
#
# Makefile--
# Makefile for utils
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/utils/Attic/Makefile,v 1.2 1996/11/11 16:30:07 scrappy Exp $
#
#-------------------------------------------------------------------------
SRCDIR = ..
include ../Makefile.global
INCLUDE_OPT = -I../include
CFLAGS+=$(INCLUDE_OPT)
all: version.o
install:
depend dep:
$(CC) -MM $(INCLUDE_OPT) *.c >depend
clean:
rm -f version.o
ifeq (depend,$(wildcard depend))
include depend
endif
|