10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-10-15 04:21:54 +02:00

Update documentation

This commit is contained in:
Anthony Scemama 2014-05-14 00:07:58 +02:00
parent 3e7c65d858
commit 59c37a79ff
3 changed files with 12 additions and 10 deletions

View File

@ -126,8 +126,12 @@ def update_documentation(data):
inside = line.startswith(".SH Description") inside = line.startswith(".SH Description")
else: else:
if line.startswith(".SH"): if line.startswith(".SH"):
return "".join(result) break
result.append(" "+line.strip()+"\n") result.append(" "+line.strip())
if result == []:
result = [" Undocumented"]
return "\n".join(result)+'\n'

View File

@ -85,8 +85,10 @@ Documentation
Number of primitives per atomic orbital Number of primitives per atomic orbital
`ao_prim_num_max <http://github.com/LCPQ/quantum_package/tree/master/src/AOs/aos.irp.f#L176>`_ `ao_prim_num_max <http://github.com/LCPQ/quantum_package/tree/master/src/AOs/aos.irp.f#L176>`_
None Undocumented
`ao_prim_num_max_align <http://github.com/LCPQ/quantum_package/tree/master/src/AOs/aos.irp.f#L177>`_ `ao_prim_num_max_align <http://github.com/LCPQ/quantum_package/tree/master/src/AOs/aos.irp.f#L177>`_
None Undocumented

View File

@ -85,11 +85,6 @@ $(info -----------------------------------------------)
endif endif
# Update the README.rst file for GitHub, and git add it
$(shell update_README.py)
# Define the Makefile common variables and rules # Define the Makefile common variables and rules
EZFIO_DIR=$(QPACKAGE_ROOT)/EZFIO EZFIO_DIR=$(QPACKAGE_ROOT)/EZFIO
@ -116,7 +111,8 @@ LIB+=$(EZFIO) $(MKL)
IRPF90+=$(patsubst %, -I %, $(INCLUDE_DIRS)) $(IRPF90_FLAGS) IRPF90+=$(patsubst %, -I %, $(INCLUDE_DIRS)) $(IRPF90_FLAGS)
irpf90.make: $(filter-out IRPF90_temp/%, $(wildcard */*.irp.f)) $(wildcard *.irp.f) $(wildcard *.inc.f) Makefile $(EZFIO) NEEDED_MODULES $(wildcard *.py) irpf90.make: $(filter-out IRPF90_temp/%, $(wildcard */*.irp.f)) $(wildcard *.irp.f) $(wildcard *.inc.f) Makefile $(EZFIO) NEEDED_MODULES $(wildcard *.py)
$(IRPF90) - $(IRPF90)
- update_README.py
Makefile.depend: Makefile Makefile.depend: Makefile
$(QPACKAGE_ROOT)/scripts/create_Makefile_depend.sh $(QPACKAGE_ROOT)/scripts/create_Makefile_depend.sh