Commit 879f9285 authored by Andreas Tille's avatar Andreas Tille
Browse files

New upstream version 2.9.1-1+dfsg

parent 4ca93d1a
Loading
Loading
Loading
Loading
+23 −10
Original line number Diff line number Diff line
*~
.DS_Store
._*
*.d
*.db
*.o
*.pyc
user.status
vgcore.*
/bin64
/build/BUILD.*
/build/COMP.mac
/build/Makefile.config*
/build/MSVC/2010/ipch
/build/MSVC/2010/ncbi-vdb.opensdf
/centos
/ilib64
/lib64
/mac
/Makefile.config.*
/Makefile.config.mac.arch
/reconfigure
/schema
/test-bin64
user.status
/win
*.opensdf
*.sdf
*.suo
*.log
/.cproject
/.project
/.pydevproject
tmp.kfg
 No newline at end of file

# mac os x meta-files
.DS_Store
._*

*~
\#*
.\#*
core
*.pyc
.gdb_history
.vscode
.gdb_history
+49 −158

File changed.

Preview size limit exceeded, changes collapsed.

+12 −1
Original line number Diff line number Diff line
@@ -31,7 +31,18 @@ Please cite the authors in any work or product based on this material.
==============================================================
EXCEPTIONS (in all cases excluding NCBI-written makefiles):

See LICENSE from https://github.com/ncbi/ncbi-vdb
Location: {libs,interfaces}/ext/bzip2
Author:   Julian R Seward
License:  BSDish [libs/ext/bzip2/LICENSE]

Location: {libs,interfaces}/ext/zlib
Authors:  Jean-loup Gailly and Mark Adler
License:  BSDish [interfaces/ext/zlib.h]

Location: libs/klib
Author:   Douglas C. Schmidt
License:  GNU Lesser General Public [libs/klib/qsort.c]


==============================================================
Copyright F.A.Q.
+8 −36
Original line number Diff line number Diff line
@@ -34,15 +34,14 @@ include $(TOP)/build/Makefile.shell
# default
#
SUBDIRS = \
	shared \
	tools \
	libs \

# common targets for non-leaf Makefiles; must follow a definition of SUBDIRS
include $(TOP)/build/Makefile.targets

default: $(SUBDIRS)

test: all
test: $(SUBDIRS)

$(SUBDIRS) test:
	@ $(MAKE) -C $@
@@ -62,10 +61,11 @@ $(SUBDIRS_STD):
#-------------------------------------------------------------------------------
# install
#

install: 
	@ echo "Checking make status of tools..."
	@ $(MAKE) -s --no-print-directory TOP=$(CURDIR) std
	@ $(MAKE) -s TOP=$(CURDIR) -f build/Makefile.install install
	@ echo "Checking make status of object libraries..."
	@ $(MAKE) -s --no-print-directory TOP=$(CURDIR) $(SUBDIRS)
	@ $(MAKE) -s --no-print-directory TOP=$(CURDIR) -f build/Makefile.install install

uninstall:    
	@ $(MAKE) -s TOP=$(CURDIR) -f build/Makefile.install uninstall
@@ -75,7 +75,7 @@ uninstall:
#-------------------------------------------------------------------------------
# clean
#
clean: clean_deb clean_rpm clean_test
clean: clean_test

clean_test:
	@ $(MAKE) -s -C test clean
@@ -88,8 +88,6 @@ runtests: runtests_test
runtests_test:
	@ $(MAKE) -s -C test runtests

#	@ $(MAKE) -s -C ngs runtests

#-------------------------------------------------------------------------------
# slowtests
#
@@ -106,32 +104,6 @@ valgrind: valgrind_test
valgrind_test:
	@ $(MAKE) -s -C test valgrind

#-------------------------------------------------------------------------------
# RPM
#
ifeq (mac,$(OS))
rpm:
	@ echo "Not making rpm on Mac"
clean_rpm:
else
rpm: std
	@ $(MAKE)       rpm -s TOP=$(CURDIR) -f build/Makefile.rpm
clean_rpm:
	@ $(MAKE) clean_rpm -s TOP=$(CURDIR) -f build/Makefile.rpm
endif

#-------------------------------------------------------------------------------
# DEB
#
ifeq (mac,$(OS))
deb: std
else
deb:
endif
	@ $(MAKE)       deb -s TOP=$(CURDIR) -f build/Makefile.deb
clean_deb:
	@ $(MAKE) clean_deb -s TOP=$(CURDIR) -f build/Makefile.deb

#-------------------------------------------------------------------------------
# pass-through targets
#
@@ -168,7 +140,7 @@ $(REPORTS):
# configuration help
#
help configure:
	@ echo "Before initial build, run './configure --build-prefix=<out>' from"
	@ echo "Before initial build, run 'make OUTDIR=<dir> out' from"
	@ echo "the project root to set the output directory of your builds."
	@ echo
	@ echo "To select a compiler, run 'make <comp>' where"

README-blastn

deleted100644 → 0
+0 −133

File deleted.

Preview size limit exceeded, changes collapsed.

Loading