Skip to content
Snippets Groups Projects
  • Marc G. Fournier's avatar
    4fff70a8
    Fixes: · 4fff70a8
    Marc G. Fournier authored
    make TCL conditinal compilation work
    
    Submitted by: Dr_George_D_Detlefsen <drgeorge@madmax.ilt.com>
    4fff70a8
    History
    Fixes:
    Marc G. Fournier authored
    make TCL conditinal compilation work
    
    Submitted by: Dr_George_D_Detlefsen <drgeorge@madmax.ilt.com>
Makefile 1.18 KiB
#-------------------------------------------------------------------------
#
# Makefile.inc--
#    Build and install postgres.
#
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
#    $Header: /cvsroot/pgsql/src/Makefile,v 1.3 1996/08/01 19:46:46 scrappy Exp $
#
# NOTES
#	objdir	- location of the objects and generated files (eg. obj)
#
#-------------------------------------------------------------------------

MKDIR=./mk
-include $(MKDIR)/../Makefile.global

SUBDIR= backend libpq 

ifeq ($(USE_TCL), true)
SUBDIR += libpgtcl
endif

SUBDIR+= bin ../doc

FIND = find
# assuming gnu tar and split here
TAR  = tar
SPLIT = split

ETAGS = etags
XARGS = xargs

include mk/postgres.subdir.mk

TAGS:
	rm -f TAGS; \
	for i in backend libpq bin; do \
	  $(FIND) $$i -name '*.[chyl]' -print | $(XARGS) $(ETAGS) -a ; \
	done

# target to generate a backup tar file and split files that can be 
# saved to 1.44M floppy
BACKUP:
	rm -f BACKUP.filelist BACKUP.tgz; \
	$(FIND) . -not -path '*obj/*' -not -path '*data/*' -type f -print > BACKUP.filelist; \
	$(TAR) --files-from BACKUP.filelist -c -z -v -f BACKUP.tgz
	$(SPLIT) --bytes=1400k BACKUP.tgz pgBACKUP.	

.PHONY: TAGS
.PHONY: BACKUP