quick-docs/modules/ROOT/pages/_partials/proc_compiling_your_application_from_source.adoc
2018-07-27 18:53:34 +02:00

18 lines
534 B
Text

[[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 _<your_source_dir>_
----
+
. Run the following command to compile and install your application:
+
[subs="+quotes"]
----
./configure && make && make install
----