You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: change table format issue in build target section
Markdown tables expect input to be on a single line, splitting multiple lines if required by a <br>. However, looking at the markdown docs, the directive for Admonitions are min 3 lines (definition, blank line, message).
Moving the notes to below the table following other practises on the message seems the best compromise if it cannot be placed within the cell
Copy file name to clipboardExpand all lines: docs/Getting-Started/Installing-Asterisk/Installing-Asterisk-From-Source/Building-and-Installing-Asterisk.md
+8-23Lines changed: 8 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -119,35 +119,20 @@ Other Make Targets
119
119
| --- | --- |
120
120
|| Executing `make` with no target is equivalent to the `all` target. |
121
121
|**all**| Compiles everything everything selected through the `configure` and `menuselect` scripts. |
122
-
| **full** | This is equivalent to `make` or `make all`, save that it will perform a more thorough investigation of the source code for documentation. This is needed to generate [AMI event documentation](/Development/Roadmap/Asterisk-11-Projects/AMI-Event-Documentation). Note that your system must have Python in order for this make target to succeed.
123
-
124
-
125
-
!!! note Version Notice
126
-
This build target is only available in Asterisk 11 and later versions.
127
-
[//]: #(end-note)
128
-
129
-
130
-
|
122
+
|**full**| This is equivalent to `make` or `make all`, save that it will perform a more thorough investigation of the source code for documentation. This is needed to generate [AMI event documentation](/Development/Roadmap/Asterisk-11-Projects/AMI-Event-Documentation). Note that your system must have Python in order for this make target to succeed. |
131
123
|**install**| Installs Asterisk, building Asterisk if it has not already been built. In general, this should be executed after Asterisk has successfully compiled. |
132
124
|**uninstall**| Removes Asterisk binaries, sounds, man pages, headers, modules and firmware builds from the system. |
133
-
| **uninstall-all** | Same as the `uninstall` target, but additionally removes configuration, spool directories and logs. All traces of Asterisk.
134
-
135
-
136
-
!!! note
137
-
As just noted, this will remove all Asterisk configuration from your system. Do not execute `uninstall-all` unless you are sure that is what you want to do.
138
-
[//]: #(end-note)
139
-
140
-
141
-
|
125
+
|**uninstall-all**| Same as the `uninstall` target, but additionally removes configuration, spool directories and logs. All traces of Asterisk. |
142
126
|**clean**| Remove all files generated by make. |
143
127
|**dist-clean**| Remove pretty much all files generated by make and configure. |
144
128
|**samples**| Install all sample configuration files (.conf files) to `/etc/asterisk/`. Overwrites existing config files. |
145
129
|**config**| Install init scripts (startup scripts) on your system. |
146
130
|**progdocs**| Uses doxygen to locally generate HTML development documentation from the source code. Generated in the `doc/` subdirectory of the source; see `doc/index.html`. |
147
131
132
+
!!! note Version Notice
133
+
The `full` build target is only available in Asterisk 11 and later versions.
134
+
[//]: #(end-note)
148
135
149
-
150
-
151
-
152
-
153
-
136
+
!!! note
137
+
`uninstall-all` build target will remove all Asterisk configuration from your system. Do not execute `uninstall-all` unless you are sure that is what you want to do.
0 commit comments