quick-docs/en-US/modules/proc_compiling_your_application_from_source.adoc

19 lines
534 B
Text
Raw Normal View History

2017-12-14 14:07:36 +00:00
[[compiling-your-application-from-source]]
= Compiling Your Application
2018-01-21 11:50:33 +00:00
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
2017-12-14 14:07:36 +00:00
. Navigate to the directory containing your source:
+
2018-01-21 11:50:33 +00:00
[subs="+quotes"]
2017-12-14 14:07:36 +00:00
----
2018-01-21 11:50:33 +00:00
cd _<your_source_dir>_
2017-12-14 14:07:36 +00:00
----
+
. Run the following command to compile and install your application:
+
2018-01-21 11:50:33 +00:00
[subs="+quotes"]
2017-12-14 14:07:36 +00:00
----
./configure && make && make install
----