mirror of
https://pagure.io/fedora-docs/quick-docs.git
synced 2024-11-25 21:54:52 +00:00
18 lines
534 B
Text
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
|
|
----
|