Makefile
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
- #-------------------------------------------------------------------------
- #
- # Makefile--
- # Makefile for utils/init
- #
- # IDENTIFICATION
- # $Header: /usr/local/cvsroot/pgsql/src/backend/utils/init/Makefile,v 1.9 1998/07/26 04:31:00 scrappy Exp $
- #
- #-------------------------------------------------------------------------
- SRCDIR = ../../..
- include ../../../Makefile.global
- CFLAGS += -I../..
- ifdef MULTIBYTE
- CFLAGS+= $(MBFLAGS)
- endif
- OBJS = enbl.o findbe.o globals.o miscinit.o postinit.o
- all: SUBSYS.o
- SUBSYS.o: $(OBJS)
- $(LD) -r -o SUBSYS.o $(OBJS)
- depend dep:
- $(CC) -MM $(CFLAGS) *.c >depend
- clean:
- rm -f SUBSYS.o $(OBJS)
- ifeq (depend,$(wildcard depend))
- include depend
- endif