diff --git a/modules/ROOT/pages/_partials/proc_compiling_your_application_from_source.adoc b/modules/ROOT/pages/_partials/proc_compiling_your_application_from_source.adoc deleted file mode 100644 index 6faf81b..0000000 --- a/modules/ROOT/pages/_partials/proc_compiling_your_application_from_source.adoc +++ /dev/null @@ -1,18 +0,0 @@ -[[compiling-your-application-from-source]] -= Compiling Your Application - -NOTE: It is preferable to use DNF to using source installattion. DNF can track what packages you have installed on your system. It facilitates updates and makes it easier to completely remove your files from your system - -. Navigate to the directory containing your source: -+ -[subs="+quotes"] ----- -cd __ ----- -+ -. Run the following command to compile and install your application: -+ -[subs="+quotes"] ----- -./configure && make && make install ----- diff --git a/modules/ROOT/pages/_partials/proc_downloading-source-code.adoc b/modules/ROOT/pages/_partials/proc_downloading-source-code.adoc deleted file mode 100644 index e17fa3e..0000000 --- a/modules/ROOT/pages/_partials/proc_downloading-source-code.adoc +++ /dev/null @@ -1,22 +0,0 @@ -= Downloading the Source Code - -. Navigate to the directory where you want to save the source: -+ -[subs="+quotes"] ----- -cd __ ----- -+ -. Download the TAR file containing the source code you want to install from: -+ -[subs="+quotes"] ----- -wget __ ----- -+ -. Extract the tarball file contents to the current working directory: -+ -[subs="+quotes"] ----- -tar -xf __ ----- diff --git a/modules/ROOT/pages/_partials/proc_setting-up-your-local-dev-and-compilation-environment.adoc b/modules/ROOT/pages/_partials/proc_setting-up-your-local-dev-and-compilation-environment.adoc deleted file mode 100644 index b7b74c7..0000000 --- a/modules/ROOT/pages/_partials/proc_setting-up-your-local-dev-and-compilation-environment.adoc +++ /dev/null @@ -1,8 +0,0 @@ -= Setting up a Development and Compiling Environment - -Install packages form the _C Development Tools and Libraries_ group: - -[subs="+quotes"] ----- -# dnf group install @c-development -----