Skip to content
Snippets Groups Projects
Commit 6c856fa9 authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

Renamed temporary files.

These are the files generated automatically with the cmd
dictionaries. I renamed them to inc which is a more standard
extension for include files.
parent ed2fd7e8
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#include "tools/Communicator.h" #include "tools/Communicator.h"
#include <sstream> #include <sstream>
#include "GREXEnum.tmp" #include "GREXEnum.inc"
using namespace std; using namespace std;
namespace PLMD{ namespace PLMD{
...@@ -35,7 +35,7 @@ std::map<std::string, int> & GREXWordMap(){ ...@@ -35,7 +35,7 @@ std::map<std::string, int> & GREXWordMap(){
static std::map<std::string, int> word_map; static std::map<std::string, int> word_map;
static bool init=false; static bool init=false;
if(!init){ if(!init){
#include "GREXMap.tmp" #include "GREXMap.inc"
} }
init=true; init=true;
return word_map; return word_map;
......
...@@ -3,19 +3,21 @@ USE=config tools ...@@ -3,19 +3,21 @@ USE=config tools
# generic makefile # generic makefile
include ../maketools/make.module include ../maketools/make.module
PlumedMain.o: PlumedMainMap.tmp PlumedMainEnum.tmp CLEANLIST:=$(CLEANLIST) PlumedMainMap.inc PlumedMainEnum.inc GREXMap.inc GREXEnum.inc
PlumedMainMap.tmp: PlumedMain.cpp PlumedMain.o: PlumedMainMap.inc PlumedMainEnum.inc
../maketools/makecmd map < PlumedMain.cpp > PlumedMainMap.tmp
PlumedMainEnum.tmp: PlumedMain.cpp PlumedMainMap.inc: PlumedMain.cpp
../maketools/makecmd enum < PlumedMain.cpp > PlumedMainEnum.tmp ../maketools/makecmd map < PlumedMain.cpp > PlumedMainMap.inc
GREX.o: GREXMap.tmp GREXEnum.tmp PlumedMainEnum.inc: PlumedMain.cpp
../maketools/makecmd enum < PlumedMain.cpp > PlumedMainEnum.inc
GREXMap.tmp: GREX.cpp GREX.o: GREXMap.inc GREXEnum.inc
../maketools/makecmd map < GREX.cpp > GREXMap.tmp
GREXEnum.tmp: GREX.cpp GREXMap.inc: GREX.cpp
../maketools/makecmd enum < GREX.cpp > GREXEnum.tmp ../maketools/makecmd map < GREX.cpp > GREXMap.inc
GREXEnum.inc: GREX.cpp
../maketools/makecmd enum < GREX.cpp > GREXEnum.inc
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
using namespace std; using namespace std;
#include "PlumedMainEnum.tmp" #include "PlumedMainEnum.inc"
namespace PLMD{ namespace PLMD{
...@@ -55,7 +55,7 @@ std::map<std::string, int> & plumedMainWordMap(){ ...@@ -55,7 +55,7 @@ std::map<std::string, int> & plumedMainWordMap(){
static std::map<std::string, int> word_map; static std::map<std::string, int> word_map;
static bool init=false; static bool init=false;
if(!init){ if(!init){
#include "PlumedMainMap.tmp" #include "PlumedMainMap.inc"
} }
init=true; init=true;
return word_map; return word_map;
......
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