<?xml version="1.0"?>
<rss version="2.0">
	<channel>
		<title>2 newbie Makefile questions</title>
		<link>http://www.allegro.cc/forums/view/605911</link>
		<description>Allegro.cc Forum Thread</description>
		<webMaster>matthew@allegro.cc (Matthew Leverton)</webMaster>
		<lastBuildDate>Tue, 04 Jan 2011 20:30:21 +0000</lastBuildDate>
	</channel>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>

Hi,</p><p> after some study of the manual I came up with this :</p><div class="source-code"><div class="toolbar"><span class="button numbers"><b>#</b></span><span class="button select">Select</span><span class="button expand">Expand</span></div><div class="inner"><span class="number">  1</span>
<span class="number">  2</span><span class="p">#variables</span>
<span class="number">  3</span>
<span class="number">  4</span>VPATH <span class="k3">=</span> C:\MinGW\lib
<span class="number">  5</span>
<span class="number">  6</span>objects <span class="k3">=</span> main.o load_screen.o
<span class="number">  7</span>
<span class="number">  8</span>linker_options <span class="k3">=</span> <span class="k3">-</span>lallegro-5.0 
<span class="number">  9</span>
<span class="number"> 10</span>
<span class="number"> 11</span>
<span class="number"> 12</span>f_rep_editor <span class="k2">:</span> $<span class="k2">(</span>objects<span class="k2">)</span>
<span class="number"> 13</span>  gcc <span class="k3">-</span>o f_rep_editor $<span class="k2">(</span>objects<span class="k2">)</span> $<span class="k2">(</span>linker_options<span class="k2">)</span>
<span class="number"> 14</span>
<span class="number"> 15</span>
<span class="number"> 16</span>main.o <span class="k2">:</span> colours.h load_screen.h
<span class="number"> 17</span>
<span class="number"> 18</span>
<span class="number"> 19</span>load_screen.o <span class="k2">:</span> colours.h load_screen.h
</div></div><p>


It&#39;s the first makefile I&#39;ve ever made.</p><p>Got a couple of questions:</p><p>1. According to the manual mingw32-make looks for a file called Makefile</p><p>I called my file Makefile.txt</p><p>When I call mingw32-make, it says that no makefile file but when I call</p><p>mingw32-make -f Makefile.txt</p><p>it finds it.</p><p>Wondering what I need to change Makefile.txt to, to get it to find it autometically.</p><p>The other question is about getting the object files linked to libraries.</p><p>I need to link to these files.</p><p>C:\MinGW\lib\liballegro.dll.a;<br />C:\MinGW\lib\liballegro_ttf.dll.a;<br />C:\MinGW\lib\liballegro_primitives.dll.a;<br />C:\MinGW\lib\liballegro_font.dll.a</p><p>Can anyone help me with that ?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (William Labbett)</author>
		<pubDate>Mon, 27 Dec 2010 04:10:25 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title"><a href="http://www.allegro.cc/forums/thread/605911/896352#target">William Labbett</a> said:</div><div class="quote"><p> Wondering what I need to change Makefile.txt to, to get it to find it automatically.</p></div></div><p>Either Makefile or makefile will do (no extension).
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Arthur Kalliokoski)</author>
		<pubDate>Mon, 27 Dec 2010 04:12:18 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>cheers Arthur.</p><p>How do I save it with no extension ?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (William Labbett)</author>
		<pubDate>Mon, 27 Dec 2010 04:17:53 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Windows automatically puts the .txt extension on it?  Use quotes</p><p>Save As -&gt; &quot;makefile&quot;
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Arthur Kalliokoski)</author>
		<pubDate>Mon, 27 Dec 2010 04:21:42 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>sweet</p><p>EDIT : that&#39;s something we say in UK. Could have just said Thanks.</p><p>Anyway, got the libraries linked now.</p><p>Changed makefile to :</p><div class="source-code"><div class="toolbar"><span class="button numbers"><b>#</b></span><span class="button select">Select</span><span class="button expand">Expand</span></div><div class="inner"><span class="number">  1</span><span class="p">#variables</span>
<span class="number">  2</span>
<span class="number">  3</span>VPATH <span class="k3">=</span> C:\MinGW\lib\
<span class="number">  4</span>
<span class="number">  5</span>objects <span class="k3">=</span> main.o load_screen.o
<span class="number">  6</span>
<span class="number">  7</span>linker_options <span class="k3">=</span> <span class="k3">-</span>lallegro.dll <span class="k3">-</span>L C:\MinGW\lib\
<span class="number">  8</span>
<span class="number">  9</span>
<span class="number"> 10</span>f_rep_editor <span class="k2">:</span> $<span class="k2">(</span>objects<span class="k2">)</span>
<span class="number"> 11</span>  gcc <span class="k3">-</span>o f_rep_editor $<span class="k2">(</span>objects<span class="k2">)</span> $<span class="k2">(</span>linker_options<span class="k2">)</span> 
<span class="number"> 12</span>
<span class="number"> 13</span>
<span class="number"> 14</span>main.o <span class="k2">:</span> colours.h load_screen.h
<span class="number"> 15</span>
<span class="number"> 16</span>
<span class="number"> 17</span>load_screen.o <span class="k2">:</span> colours.h load_screen.h
</div></div><p>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (William Labbett)</author>
		<pubDate>Mon, 27 Dec 2010 04:22:27 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title"><a href="http://www.allegro.cc/forums/thread/605911/896354#target">William Labbett</a> said:</div><div class="quote"><p> How do I save it with no extension ?</p></div></div><p>Don&#39;t use Notepad.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (LennyLen)</author>
		<pubDate>Mon, 27 Dec 2010 04:42:45 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>IIRC, Notepad can also save without an extention if you select &quot;All files&quot; first. <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Mon, 27 Dec 2010 15:46:57 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title"><a href="http://www.allegro.cc/forums/thread/605911/896377#target">bamccaig</a> said:</div><div class="quote"><p> IIRC, Notepad can also save without an extention if you select &quot;All files&quot; first.</p></div></div><p>Nope, even then it still adds a .txt
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (LennyLen)</author>
		<pubDate>Mon, 27 Dec 2010 15:52:10 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Obviously Windows knows best.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Arthur Kalliokoski)</author>
		<pubDate>Mon, 27 Dec 2010 15:54:18 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>IIRC, you can just add a dot at the end of the file name to disable the automatic extensions.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (torhu)</author>
		<pubDate>Mon, 27 Dec 2010 16:19:32 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>And don&#39;t you just love it when you want to edit it again, you can&#39;t just double-click it without an extension without getting the &quot;Open with&quot; dialog.  Maybe it&#39;s just best to leave it as makefile.txt.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Arthur Kalliokoski)</author>
		<pubDate>Mon, 27 Dec 2010 16:26:06 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>IIRC If you also tell windows to display extensions for all file types notepad should allow you to enter the full filename after selecting &quot;All Files&quot;.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Thomas Fjellstrom)</author>
		<pubDate>Mon, 27 Dec 2010 16:41:13 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Just type in &quot;Makefile.&quot; (with the quotes) like torhu said. Easy as that.</p><p>You all love to hate on Windows, but in all reality, how often do most people need to save a file without an extension? It doesn&#39;t make sense <i>not</i> to add the default extension automatically - very few people actually want to know and type the correct extension whenever they save.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (BAF)</author>
		<pubDate>Tue, 28 Dec 2010 02:15:13 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I suppose you could always get the make source and change it to accept makefile.txt as the default, since you can&#39;t get the Windows sources.  Maybe one of those third party shells would know what to do with no extension though.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Arthur Kalliokoski)</author>
		<pubDate>Tue, 28 Dec 2010 02:22:34 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title"><a href="http://www.allegro.cc/forums/thread/605911/896403#target">BAF</a> said:</div><div class="quote"><p>You all love to hate on Windows, but in all reality, how often do most people need to save a file without an extension? It doesn&#39;t make sense <i>not</i> to add the default extension automatically - very few people actually want to know and type the correct extension whenever they save.
</p></div></div><p>
I don&#39;t even add an extension to text files. <img src="http://www.allegro.cc/forums/smileys/rolleyes.gif" alt="::)" /> Why would I? That should be the default type assumed by the system. And as a general rule, file extensions shouldn&#39;t be trusted anyway. If I&#39;m not sure what type of file I&#39;m dealing with (very rare) then I just ask `<tt>file</tt>`. Windows can&#39;t even deal with files without extensions (it asks you every <span class="cuss"><span>goddamn</span></span> time to search through two or three dialogs to find an application to open it with).
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Tue, 28 Dec 2010 02:43:05 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I see that even though Russia <a href="http://www.zdnet.co.uk/news/security/2010/07/08/microsoft-opens-source-code-to-russian-secret-service-40089481/">had the source code to Windows 7</a> to examine for months, they&#39;ve decided to go with <a href="http://opendotdotdot.blogspot.com/2010/12/putin-orders-russian-move-to-gnulinux.html">Linux after all.</a>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Arthur Kalliokoski)</author>
		<pubDate>Tue, 28 Dec 2010 10:09:16 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>How would the bulk of the code for Windows 7 compare with a big triple A game ?</p><p>eg Call of Duty Black ops
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (William Labbett)</author>
		<pubDate>Tue, 28 Dec 2010 11:37:44 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title"><a href="http://www.allegro.cc/forums/thread/605911/896403#target">BAF</a> said:</div><div class="quote"><p>You all love to hate on Windows, but in all reality, how often do most people need to save a file without an extension? It doesn&#39;t make sense not to add the default extension automatically - very few people actually want to know and type the correct extension whenever they save.</p></div></div><p>The big problem for me is it adding a .txt extension even when I already GAVE the file an extension. Stupid windows.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Thomas Fjellstrom)</author>
		<pubDate>Tue, 28 Dec 2010 11:59:47 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>It&#39;s also a huge security hole, i.e. &quot;college_girls_gone_wild.jpg.exe&quot; just shows up as &quot;college_girls_gone_wild.jpg&quot;.  Of course in Linux even a jpg extension could execute if it had the right permissions, but the user privileges had some thought put into them.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Arthur Kalliokoski)</author>
		<pubDate>Tue, 28 Dec 2010 12:05:05 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title"><a href="http://www.allegro.cc/forums/thread/605911/896459#target">Arthur Kalliokoski</a> said:</div><div class="quote"><p>
Of course in Linux even a jpg extension could execute if it had the right permissions, but the user privileges had some thought put into them.
</p></div></div><p>
Also, from the command line (where I imagine most Linux users spend most of their time; I know I certainly do) you have to explicitly say what you want to happen (which is generally effortless). Even from the GUI, if a file is executable, Gnome always asks me: do I want to &quot;display&quot; this file (i.e., open it) or do I want to execute it? Of course, I almost never let any desktop environment implicitly carry out actions anyway. I generally open the context menu and select what I want to happen.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Tue, 28 Dec 2010 14:50:14 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Since it came down to text editors, I would like to add my 2 cents with notepad++, a text editor used for various programming languages.. Very easy to use, and does what is required to be done.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (type568)</author>
		<pubDate>Tue, 28 Dec 2010 16:22:01 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title"><a href="http://www.allegro.cc/forums/thread/605911/896458#target">Thomas Fjellstrom</a> said:</div><div class="quote"><p> The big problem for me is it adding a .txt extension even when I already GAVE the file an extension. Stupid windows.</p></div></div><p>Use quotes around the filename. That&#39;s always been step one to getting the extension you want. Or, use a better editor than notepad.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (BAF)</author>
		<pubDate>Tue, 28 Dec 2010 22:58:22 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title"><a href="http://www.allegro.cc/forums/thread/605911/896486#target">BAF</a> said:</div><div class="quote"><p>Or, use a better editor than notepad.</p></div></div><p>I choose to use a better OS <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Thomas Fjellstrom)</author>
		<pubDate>Tue, 28 Dec 2010 23:18:51 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>The big mistake here is using notepad in the first place.  Even being saddled with Windows is no excuse for not using Vim.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Kthanid)</author>
		<pubDate>Fri, 31 Dec 2010 00:53:32 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title"><a href="http://www.allegro.cc/forums/thread/605911/896488#target">Thomas Fjellstrom</a> said:</div><div class="quote"><p> I choose to use a better OS </p></div></div><p>Oh yes, and instead of listening to a better radio station when I don&#39;t like what&#39;s playing, I buy a brand new car. <img src="http://www.allegro.cc/forums/smileys/rolleyes.gif" alt="::)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (BAF)</author>
		<pubDate>Fri, 31 Dec 2010 08:14:41 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>A better analogy would be a free luxury car instead of an overpriced Yugo.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Arthur Kalliokoski)</author>
		<pubDate>Fri, 31 Dec 2010 08:52:09 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Except that the analogy was applying to the absurd suggestion of changing operating systems to get a better text editor.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (BAF)</author>
		<pubDate>Fri, 31 Dec 2010 09:20:37 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>But Yugos didn&#39;t have a &quot;scan&quot; or &quot;seek&quot; button on their radios!  They probably couldn&#39;t pull in distant stations very well either.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Arthur Kalliokoski)</author>
		<pubDate>Fri, 31 Dec 2010 09:24:45 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title"><a href="http://www.allegro.cc/forums/thread/605911/896754#target">BAF</a> said:</div><div class="quote"><p>Oh yes, and instead of listening to a better radio station when I don&#39;t like what&#39;s playing, I buy a brand new car. </p></div></div><p>No, instead of listening to a crappy radio station, I listen to a good one.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Thomas Fjellstrom)</author>
		<pubDate>Fri, 31 Dec 2010 09:37:26 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title"><a href="http://www.allegro.cc/forums/thread/605911/896761#target">BAF</a> said:</div><div class="quote"><p>
Except that the analogy was applying to the absurd suggestion of changing operating systems to get a better text editor.
</p></div></div><p>
I think the spirit was more along the lines of changing operating systems to get better development tools. <br />Also, we&#39;re talking about makefiles here, a concept that was invented on Unix and still works best when used in a Unix-like environment. Suggesting to switch to a Unix-like platform to get the most out of them does make some sense, although it&#39;s probably still overkill.</p><div class="quote_container"><div class="title"><a href="http://www.allegro.cc/forums/thread/605911/896765#target">Thomas Fjellstrom</a> said:</div><div class="quote"><p>
No, instead of listening to a crappy radio station, I listen to a good one.
</p></div></div><p>
Instead of listening to a crappy radio station, I listen to CDs. Only with operating systems, the CDs are free and the radio isn&#39;t.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Tobias Dammers)</author>
		<pubDate>Mon, 03 Jan 2011 03:04:28 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Yeah, and that spirit is just like suggesting buying a new car to get a better radio.</p><p>Switch to a new OS to use a <span class="cuss"><span><span class="cuss"><span><span class="cuss"><span>shit</span></span></span></span>ty</span></span> build system anyway... that makes a lot of sense. <img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (BAF)</author>
		<pubDate>Mon, 03 Jan 2011 03:20:53 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Let&#39;s see what the money-is-no-object scientists type use, shall we?</p><p><span class="remote-thumbnail"><span class="json">{"name":"800px-Operating_systems_used_on_top_500_supercomputers.svg.png","src":"\/\/djungxnpq2nug.cloudfront.net\/image\/cache\/7\/c\/7cd696c8987b0fd04795e7b84a034c52.png","w":800,"h":560,"tn":"\/\/djungxnpq2nug.cloudfront.net\/image\/cache\/7\/c\/7cd696c8987b0fd04795e7b84a034c52"}</span><img src="http://www.allegro.cc//djungxnpq2nug.cloudfront.net/image/cache/7/c/7cd696c8987b0fd04795e7b84a034c52-240.jpg" alt="800px-Operating_systems_used_on_top_500_supercomputers.svg.png" width="240" height="168" /></span>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Arthur Kalliokoski)</author>
		<pubDate>Mon, 03 Jan 2011 03:24:48 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>And what is that supposed to prove?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (BAF)</author>
		<pubDate>Mon, 03 Jan 2011 03:29:11 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Isn&#39;t it obvious on the face of it?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Arthur Kalliokoski)</author>
		<pubDate>Mon, 03 Jan 2011 03:34:27 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>
 Last time I had linux installed it was Mandriva and I got a message due to trying to run something without permission.</p><p> The message said the incident was going to be reported. That&#39;s like being spotted stealing something trivial from work and getting grassed up for it.<br /> <br /> I thought linux was supposed to be cool. There&#39;s a world of difference between being an amiable nerdy tech-enthusiast and complete twat who&#39;s life is so devoid of pleasure that he gets a kick out of writing such strings into the kernal of an OS.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (William Labbett)</author>
		<pubDate>Mon, 03 Jan 2011 04:21:21 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title"><a href="http://www.allegro.cc/forums/thread/605911/897021#target">William Labbett</a> said:</div><div class="quote"><p> I got a message due to trying to run something without permission.</p></div></div><p>Yes, <a href="https://threatpost.com/en_us/blogs/storm-botnet-returns-part-new-years-attacks-010211">this </a> is preferable since it doesn&#39;t require user intervention.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Arthur Kalliokoski)</author>
		<pubDate>Mon, 03 Jan 2011 04:24:44 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title"><a href="http://www.allegro.cc/forums/thread/605911/897021#target">William Labbett</a> said:</div><div class="quote"><p>Last time I had linux installed it was Mandriva and I got a message due to trying to run something without permission.</p></div></div><p>Must have gotten your password wrong. If you run and app with sudo, and get the password wrong enough times, it&#39;ll give you that message and exit.</p><p>It actually sends an email to &quot;root&quot;, its not about people getting jollies writing &quot;such strings&quot;, its about security, and knowing that you can tell when someone is trying naughty things with your box.</p><p>Also, its not written into the kernel <img src="http://www.allegro.cc/forums/smileys/rolleyes.gif" alt="::)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Thomas Fjellstrom)</author>
		<pubDate>Mon, 03 Jan 2011 04:25:04 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title"><a href="http://www.allegro.cc/forums/thread/605911/897019#target">Arthur Kalliokoski</a> said:</div><div class="quote"><p> Isn&#39;t it obvious on the face of it?</p></div></div><p>No not really. Just because scientists are using more and more Linux means that everyone else should as well?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (BAF)</author>
		<pubDate>Mon, 03 Jan 2011 08:06:32 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title"><a href="http://www.allegro.cc/forums/thread/605911/897019#target">Arthur Kalliokoski</a> said:</div><div class="quote"><p>
Isn&#39;t it obvious on the face of it?
</p></div></div><p>
It&#39;s pseudo-proof. Your arguments is that most scientists use Linux because it is better even when money is meaningless. Your graph shows, if anything, that most scientists use Linux, but it does not provide reasons.<br />My guess would be that Linux is the OS of choice for entirely different reasons - the most crucial applications for computers, in the scientific world, involve really large computers - clusters where you can reserve a few hundred CPUs with a few dozen terabytes of RAM for a few days straight to perform your calculation. For such computers, a highly modular OS, fully configurable and every part tweakable to the max, to the point that parts of the OS kernel can be rewritten to suit particular needs, is the best choice, and a closed-source OS simply cannot satisfy this. User-friendlyness is relatively unimportant: When you have three days to do your calculation, spending an hour or two on learning command line basics is relatively meaningless.<br />So the most mission-critical systems run Linux - everything else follows naturally, just like a company that uses SQL Server for their databases is likely to run Windows on everything.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Tobias Dammers)</author>
		<pubDate>Mon, 03 Jan 2011 12:57:32 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>

Anyway, sorry about my stupid comment. I&#39;d like to use linux but noone really cares if I use linux or Windows (correct me if I&#39;m wrong) and I find Windows easy. If I ever finish my game I&#39;ll be able to compile it for linux seeing as allegro is cross-platform.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (William Labbett)</author>
		<pubDate>Tue, 04 Jan 2011 00:33:51 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>No one bothered to tell you to open the file from within <a href="http://www.codeblocks.org/">Code::Blocks</a>. Code Blocks will let you select the line ending type as well as correctly read text files with any line endings. If you create a new file in Code Blocks you&#39;ll have to select &#39;all files&#39; in the save type under the save as dialog and put quotes around the file name, but after that it will save normally.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Edgar Reynaldo)</author>
		<pubDate>Tue, 04 Jan 2011 10:38:42 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Nice to see you&#39;re back Edgar.</p><p>I use Notepad++ anyway, but thanks.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (William Labbett)</author>
		<pubDate>Tue, 04 Jan 2011 11:44:06 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title"><a href="http://www.allegro.cc/forums/thread/605911/897129#target">William Labbett</a> said:</div><div class="quote"><p>
Nice to see you&#39;re back Edgar.
</p></div></div><p>
Cheers, thanks. Good to see some familiar faces. <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" /></p><div class="quote_container"><div class="title"><a href="http://www.allegro.cc/forums/thread/605911/897129#target">William Labbett</a> said:</div><div class="quote"><p>
I use Notepad++ anyway, but thanks.
</p></div></div><p>
Does Notepad++ have syntax highlighting? What about project files or compiler and linker options? You should really try Code Blocks. Thanks to this thread I checked their website and version 10.05 came out last May so I downloaded it and I&#39;m going to try it out tomorrow.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Edgar Reynaldo)</author>
		<pubDate>Tue, 04 Jan 2011 15:49:50 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title"><a href="http://www.allegro.cc/forums/thread/605911/897140#target">Edgar Reynaldo</a> said:</div><div class="quote"><p>
Does Notepad++ have syntax highlighting?</p></div></div><p>
Yes.
</p><div class="quote_container"><div class="title"><a href="http://www.allegro.cc/forums/thread/605911/897140#target">Edgar Reynaldo</a> said:</div><div class="quote"><p>
What about project files...</p></div></div><p>
No.
</p><div class="quote_container"><div class="title"><a href="http://www.allegro.cc/forums/thread/605911/897140#target">Edgar Reynaldo</a> said:</div><div class="quote"><p>
...or compiler and linker options?</p></div></div><p>
Not really. You should be able to invoke a build file (Makefile, CMake, premake4, scons, etc.) though.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Tue, 04 Jan 2011 20:30:21 +0000</pubDate>
	</item>
</rss>
