diff --git a/generate.py b/generate.py index a701d5c..660289d 100755 --- a/generate.py +++ b/generate.py @@ -73,9 +73,9 @@ def main(): parser = argparse.ArgumentParser(description='Generate experiment data.') parser.add_argument('description', type=str, nargs='+', help='file containing the taskset description.') - parser.add_argument('--header', dest='header', type=str, nargs='?', default='./template/defines.h', help='path to optional custom header file.') - parser.add_argument('--makefile', dest='makefile', type=str, nargs='?', default='./template/Makefile', help='path to optional custom makefile.') - parser.add_argument('--cpp', dest='cpp', type=str, nargs='*', default='./template/experiment.cpp', help='path to optional custom c++ implementation.') + parser.add_argument('--header', dest='header', type=str, nargs='?', default='./templates/normal/defines.h', help='path to optional custom header file.') + parser.add_argument('--makefile', dest='makefile', type=str, nargs='?', default='./templates/normal/Makefile', help='path to optional custom makefile.') + parser.add_argument('--cpp', dest='cpp', type=str, nargs='*', default='./templates/normal/experiment.cpp', help='path to optional custom c++ implementation.') args = parser.parse_args() cwd = os.getcwd() diff --git a/template/Makefile b/templates/normal/Makefile similarity index 100% rename from template/Makefile rename to templates/normal/Makefile diff --git a/template/defines.h b/templates/normal/defines.h similarity index 100% rename from template/defines.h rename to templates/normal/defines.h diff --git a/template/experiment.cpp b/templates/normal/experiment.cpp similarity index 100% rename from template/experiment.cpp rename to templates/normal/experiment.cpp