<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1028325" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1028325</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/computer-help/linux-makefiles-compiling-your-own-source#comment-1167471</link>
    <description> &lt;p&gt;Oh yes. I&#039;ve noticed a lot of people like using apt/Synaptic (Debian&#039;s) on distros like Slackware. I don&#039;t know how popular portage is outside of Gentoo but I don&#039;t see why youldn&#039;t be able to use it. The inital installation procedure could be unusual, and you may have to do some tweaking with portage&#039;s configuration to suit your system. Have a look here: &lt;a href=&quot;http://forums.gentoo.org/viewtopic.php?t=125553&quot; class=&quot;bb-url&quot;&gt;http://forums.gentoo.org/viewtopic.php?t=125553&lt;/a&gt; &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Fyi, the easiest way to get portage is to simply use Gentoo. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/tongue.png&quot; title=&quot;Sticking out tongue&quot; alt=&quot;Sticking out tongue&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Mon, 07 Mar 2005 19:53:06 +0000</pubDate>
 <dc:creator>Abhishek Reddy</dc:creator>
 <guid isPermaLink="false">comment 1167471 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/computer-help/linux-makefiles-compiling-your-own-source#comment-1167460</link>
    <description> &lt;p&gt;Perfect, thanks Abhi! But hang on... &quot;Downloads the package and it&#039;s dependancies&quot; how rude, it&#039;s getting rpm&#039;s of dependent packages to work that&#039;s causing me the biggest problems! I presume you can mix distro&#039;s methodolgy, i.e. I could use &#039;emerge&#039;?&lt;/p&gt;
&lt;p&gt;I got BlueFish working though (hurrah) - rather good, thanks for the tip! &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Mon, 07 Mar 2005 15:20:36 +0000</pubDate>
 <dc:creator>JeevesBond</dc:creator>
 <guid isPermaLink="false">comment 1167460 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/computer-help/linux-makefiles-compiling-your-own-source#comment-1167185</link>
    <description> &lt;p&gt;This explains it all better than I can ever hope to:&lt;br /&gt;
&lt;a href=&quot;http://www.gnu.org/software/make/manual/html_mono/make.html#SEC1&quot; class=&quot;bb-url&quot;&gt;http://www.gnu.org/software/make/manual/html_mono/make.html#SEC1&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Thu, 03 Mar 2005 09:40:51 +0000</pubDate>
 <dc:creator>Abhishek Reddy</dc:creator>
 <guid isPermaLink="false">comment 1167185 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/computer-help/linux-makefiles-compiling-your-own-source#comment-1166990</link>
    <description> &lt;p&gt;Can&#039;t think of any tutorials at this point. I&#039;m at uni now so I can&#039;t refer to the bookmarks anyway. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I&#039;m just getting into Makefiles as I progress through C/C++ programming. As I understand it, what a Makefile does is contain a set of commands (flags and options included) to link and build the source files.&lt;/p&gt;
&lt;p&gt;A single source file may be compiled with a command like so:&lt;br /&gt;
&lt;code&gt;g++ infile.cc -o outfile.bin&lt;/code&gt;&#039;&lt;br /&gt;
In a slightly more sophisticated program, you may have tens, hundreds, of these files, often requiring complex header inclusion, library linking and whatnot. A Makefile, used with make (automake), allows you to set these parameters and automate the task of building, which may have taken many steps manually. If you keep your eyes on the output as a program is makeing, you&#039;ll be able to pick out individual commands such as gcc or g++.&lt;/p&gt;
&lt;p&gt;What you usually do next is `make install`, as the root user. It runs a lot of shell commands to place all the built files in the right paths so they can be used in the system. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Packages, as you might have noticed, aren&#039;t of a standard format. Some are pure source designed for automake, others may use unique methods, and distro-specific packages are used by that distro&#039;s package manager -- yum rpms, portage ebuilds, apt debs, slack tgzs, and so on. Many package managers are automated to handle the packages on their own; Gentoo&#039;s portage uses `emerge` to very simply download an ebuild and its dependencies and run the configure and make. Fedora&#039;s `yum` downloads an rpm and maybe its dependencies and moves the binary files to the right paths. Each works differently, but they are normally a lot easier than searching for individual packages and dependencies on your own. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/tongue.png&quot; title=&quot;Sticking out tongue&quot; alt=&quot;Sticking out tongue&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I hope this made sense.&lt;/p&gt;
 </description>
     <pubDate>Tue, 01 Mar 2005 00:07:31 +0000</pubDate>
 <dc:creator>Abhishek Reddy</dc:creator>
 <guid isPermaLink="false">comment 1166990 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
