From c57683077daa37f365898808e55b81109a5a7418 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Fri, 25 Jan 2019 17:16:29 +0100 Subject: [PATCH] Add src/applications/ --- Makefile.rules | 2 +- src/applications/README.md | 0 src/{ => applications}/listfunc.c | 0 src/{ => applications}/listfunc.h | 0 src/{ => applications}/sortbase.h | 0 5 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 src/applications/README.md rename src/{ => applications}/listfunc.c (100%) rename src/{ => applications}/listfunc.h (100%) rename src/{ => applications}/sortbase.h (100%) diff --git a/Makefile.rules b/Makefile.rules index 64a58f9b2fc..a3d823b8ff6 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -66,7 +66,7 @@ SOURCES += src/general/iostream.c ifeq ($(HPCGAP),no) # we don't support a kernel API in HPC-GAP atm SOURCES += src/libgap-api.c endif -SOURCES += src/listfunc.c +SOURCES += src/applications/listfunc.c SOURCES += src/math/listoper.c SOURCES += src/core/lists.c SOURCES += src/tnums/macfloat.c diff --git a/src/applications/README.md b/src/applications/README.md new file mode 100644 index 00000000000..e69de29bb2d diff --git a/src/listfunc.c b/src/applications/listfunc.c similarity index 100% rename from src/listfunc.c rename to src/applications/listfunc.c diff --git a/src/listfunc.h b/src/applications/listfunc.h similarity index 100% rename from src/listfunc.h rename to src/applications/listfunc.h diff --git a/src/sortbase.h b/src/applications/sortbase.h similarity index 100% rename from src/sortbase.h rename to src/applications/sortbase.h