head	1.5;
access;
symbols
	release-2-12:1.5
	release-2-12-beta-1:1.5
	release-2-11:1.5
	release-2-11-beta-2:1.5
	release-2-11-beta-1:1.5
	release-2-10:1.5
	release-2-10-beta-2:1.5
	release-2-10-beta-1:1.5
	release-2-9:1.5
	release-2-9-beta-3:1.5
	release-2-9-beta-2:1.5
	release-2-9-beta-1:1.5
	release-2-8:1.5
	release-2-8-beta-3:1.5
	release-2-8-beta-2:1.5
	release-2-8-beta-1:1.5
	release-2-7:1.4
	release-2-7-beta-4:1.4
	release-2-7-beta-3:1.4
	release-2-7-beta-2:1.4
	release-2-7-beta-1:1.4
	release-2-6:1.2
	release-2-6-beta-2:1.2
	release-2-6-beta-1:1.1;
locks; strict;
comment	@# @;


1.5
date	2011.01.26.21.03.47;	author jim;	state Exp;
branches;
next	1.4;

1.4
date	2009.02.06.22.59.44;	author jim;	state Exp;
branches;
next	1.3;

1.3
date	2008.12.09.19.46.14;	author jim;	state Exp;
branches;
next	1.2;

1.2
date	2006.01.20.20.23.38;	author jim;	state Exp;
branches;
next	1.1;

1.1
date	2005.05.27.19.32.39;	author jim;	state Exp;
branches;
next	;


desc
@@


1.5
log
@Add namdbin plugin.
@
text
@#!/bin/csh

if ( $#argv == 0 ) then
  echo "Imports VMD plugin files from external source tree into NAMD tree."
  echo "usage: $0 <plugins tree>"
  exit -1
endif

set dest=$0
set dest=$dest:h
if ( $dest == $0 ) set dest="."

set base=$1

echo Importing from $base to $dest

foreach file ( molfile_plugin.h vmdplugin.h )
  set dir=include
  set f=$base/$dir/$file
  echo $f
  \cp -f $f $dest/$dir
end

foreach file ( dcdplugin.c pdbplugin.c psfplugin.c jsplugin.c namdbinplugin.c \
               hash.h hash.c endianswap.h fastio.h largefiles.h \
               readpdb.h periodic_table.h fortread.h )
  set dir=molfile_plugin/src
  set f=$base/$dir/$file
  echo $f
  \cp -f $f $dest/$dir
end

set header=include/libmolfile_plugin.h
/bin/rm $header
$base/create_static_header.sh MOLFILE molfile $header dcdplugin jsplugin pdbplugin psfplugin namdbinplugin

@


1.4
log
@use script in plugins tree to create static header
@
text
@d24 1
a24 1
foreach file ( dcdplugin.c pdbplugin.c psfplugin.c jsplugin.c \
d35 1
a35 1
$base/create_static_header.sh MOLFILE molfile $header dcdplugin jsplugin pdbplugin psfplugin
@


1.3
log
@importing new plugins, updating old ones
@
text
@d33 4
@


1.2
log
@Fix large file support on AIX, move related macros to largefiles.h.
@
text
@d24 3
a26 1
foreach file ( dcdplugin.c endianswap.h fastio.h largefiles.h )
@


1.1
log
@Include and build plugins with namd2 source, no longer separate library.
@
text
@d24 1
a24 1
foreach file ( dcdplugin.c endianswap.h fastio.h )
@

