Skip to content
Snippets Groups Projects
Commit 5d12a8fd authored by sjplimp's avatar sjplimp
Browse files

git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@12528 f3b2605a-c512-4ea7-a41b-209d697bcdaa
parent 159d82e4
No related branches found
No related tags found
No related merge requests found
...@@ -48,17 +48,17 @@ help: ...@@ -48,17 +48,17 @@ help:
@echo 'make install-python install LAMMPS wrapper in Python' @echo 'make install-python install LAMMPS wrapper in Python'
@echo 'make tar create lmp_src.tar.gz of src dir and packages' @echo 'make tar create lmp_src.tar.gz of src dir and packages'
@echo '' @echo ''
@echo 'make package list available packages' @echo 'make package list available packages'
@echo 'make package-status (ps) status of all packages' @echo 'make package-status (ps) status of all packages'
@echo 'make yes-package install a single package in src dir' @echo 'make yes-package install a single pgk in src dir'
@echo 'make no-package remove a single package from src dir' @echo 'make no-package remove a single pkg from src dir'
@echo 'make yes-all install all packages in src dir' @echo 'make yes-all install all pgks in src dir'
@echo 'make no-all remove all packages from src dir' @echo 'make no-all remove all pkgs from src dir'
@echo 'make yes-standard install all standard packages' @echo 'make yes-standard (yes-std) install all standard pkgs'
@echo 'make no-standard remove all standard packages' @echo 'make no-standard (no-srd) remove all standard pkgs'
@echo 'make yes-user install all user packages' @echo 'make yes-user install all user pkgs'
@echo 'make no-user remove all user packages' @echo 'make no-user remove all user pkgs'
@echo 'make no-lib remove all packages with external libs' @echo 'make no-lib remove all pkgs with external libs'
@echo '' @echo ''
@echo 'make package-update (pu) replace src files with updated package files' @echo 'make package-update (pu) replace src files with updated package files'
@echo 'make package-overwrite replace package files with src files' @echo 'make package-overwrite replace package files with src files'
...@@ -149,18 +149,18 @@ package: ...@@ -149,18 +149,18 @@ package:
@echo '' @echo ''
@echo 'User-contributed packages:' $(PACKUSER) @echo 'User-contributed packages:' $(PACKUSER)
@echo '' @echo ''
@echo 'make package list available packages' @echo 'make package list available packages'
@echo 'make package-status (ps) status of all packages' @echo 'make package-status (ps) status of all packages'
@echo 'make yes-package install a single package in src dir' @echo 'make yes-package install a single pgk in src dir'
@echo 'make no-package remove a single package from src dir' @echo 'make no-package remove a single pkg from src dir'
@echo 'make yes-all install all packages in src dir' @echo 'make yes-all install all pgks in src dir'
@echo 'make no-all remove all packages from src dir' @echo 'make no-all remove all pkgs from src dir'
@echo 'make yes-standard install all standard packages' @echo 'make yes-standard (yes-std) install all standard pkgs'
@echo 'make no-standard remove all standard packages' @echo 'make no-standard (no-srd) remove all standard pkgs'
@echo 'make yes-user install all user packages'
@echo 'make no-user remove all user packages'
@echo 'make no-lib remove all packages with external libs'
@echo '' @echo ''
@echo 'make yes-user install all user pkgs'
@echo 'make no-user remove all user pkgs'
@echo 'make no-lib remove all pkgs with external libs'
@echo 'make package-update (pu) replace src files with package files' @echo 'make package-update (pu) replace src files with package files'
@echo 'make package-overwrite replace package files with src files' @echo 'make package-overwrite replace package files with src files'
@echo 'make package-diff (pd) diff src files against package file' @echo 'make package-diff (pd) diff src files against package file'
...@@ -171,10 +171,10 @@ yes-all: ...@@ -171,10 +171,10 @@ yes-all:
no-all: no-all:
@for p in $(PACKALL); do $(MAKE) no-$$p; done @for p in $(PACKALL); do $(MAKE) no-$$p; done
yes-standard: yes-standard yes-std:
@for p in $(PACKAGE); do $(MAKE) yes-$$p; done @for p in $(PACKAGE); do $(MAKE) yes-$$p; done
no-standard: no-standard no-std:
@for p in $(PACKAGE); do $(MAKE) no-$$p; done @for p in $(PACKAGE); do $(MAKE) no-$$p; done
yes-user: yes-user:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment