10
0
mirror of https://github.com/LCPQ/quantum_package synced 2025-01-09 20:48:47 +01:00

Tests more general

This commit is contained in:
Anthony Scemama 2014-04-07 22:47:34 +02:00
parent 74c2658546
commit 7ed4489fe1
4 changed files with 13 additions and 14 deletions

View File

@ -3,4 +3,4 @@ all: inputs
FORCE: FORCE:
inputs: FORCE inputs: FORCE
$(MAKE) -C inputs cd inputs ; $(MAKE) all_ezfio

View File

@ -15,14 +15,4 @@ To avoid tracking large binary files with git, only the MD5 digests of the files
present in the directory are tracked. Input EZFIO files should be archived using the present in the directory are tracked. Input EZFIO files should be archived using the
``archive_ezfio.sh`` script. The name of the archive will be the md5 digest. ``archive_ezfio.sh`` script. The name of the archive will be the md5 digest.
The corresponding files are loaded by running:: The new files are automatically downloaded if not present in the ``cache`` directory.
$ make pull
And the new files are uploaded with::
$ make push
All previously downloaded files are stored in the ``cache`` directory.

View File

@ -1,7 +1,7 @@
all_ezfio: $(shell for i in *.md5 ; do echo $${i/md5/ezfio} ; done) all_ezfio: $(shell ls *.md5 | sed 's/\.md5/\.ezfio/')
@printf '\nCreated EZFIO directories\n' @printf '\nCreated EZFIO directories\n'
all_md5: $(shell for i in *.ezfio ; do echo $${i/ezfio/md5} ; done) all_md5: $(shell ls -d *.ezfio | sed 's/\.ezfio/\.md5/')
@printf '\nCreated md5 files\n' @printf '\nCreated md5 files\n'
FORCE: FORCE:

View File

@ -389,6 +389,15 @@ Contains general purpose utilities.