postgresql/src/utils/Makefile

30 lines
544 B
Makefile
Raw Normal View History

#-------------------------------------------------------------------------
#
# Makefile--
# Makefile for utils
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/utils/Attic/Makefile,v 1.1 1996/11/11 13:51:55 bryanh Exp $
#
#-------------------------------------------------------------------------
SRCDIR = ..
include ../Makefile.global
INCLUDE_OPT = -I../include
CFLAGS+=$(INCLUDE_OPT)
all: version.o
depend dep:
$(CC) -MM $(INCLUDE_OPT) *.c >depend
clean:
rm -f version.o
ifeq (depend,$(wildcard depend))
include depend
endif