User Johan Dahlin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T03:17:02Zhttp://stackoverflow.com/feeds/user/14337http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1915/how-do-i-know-if-have-rsi-or-carpal-tunnel/1773743#17737433Answer by Johan Dahlin for How do I know if have RSI or carpal tunnel?Johan Dahlin2009-11-20T22:58:48Z2009-11-21T23:20:47Z<p>Finding out if you have Carpal Tunnel Syndrome is actually pretty easy, you just need to hold your hands together downwards, using the <a href="http://en.wikipedia.org/wiki/Phalen_maneuver" rel="nofollow">Phalen Maneuver</a>:</p>
<p><img src="http://www.pyroenergen.com/articles08/images/phalens-maneuver.jpg"></p>
<p>If you have good hands you won't really feel anything, if you have CTS you'll not be able to hold the hands for 2 minutes in that position because of severe pain.
Usually most professionals who gotten sore hands due to programmers are not suffering from the Carpal Tunnel Syndrome, it's the most common misdiagnoses. It's usually bad posture, excessive typing and other bad ergonomical habits that kicks in after a few years of abuse. But seriously, go see a doctor.</p>
http://stackoverflow.com/questions/319764/recursive-make-friend-or-foe5Recursive Make - friend or foe?Johan Dahlin2008-11-26T04:47:05Z2009-10-05T06:15:29Z
<p>I'm using (GNU) Make in my project. I'm currently putting one makefile per directory and specify the subdirectories using SUBDIRS.
It's been suggested to me that this is not the ideal way of using make, that using a one toplevel make file (or several, split up using include). I've tried migrating/using this layout in the past, but it appears to me that it's unnecessary complicated.</p>
<p>Which are the benefits/drawbacks of using recursive makefiles?</p>
http://stackoverflow.com/questions/321985/using-gdb-without-debugging-symbols-on-x863Using GDB without debugging symbols on x86?Johan Dahlin2008-11-26T20:11:52Z2009-07-14T06:40:40Z
<p>How do I use GDB to debug a program which do not have debugging symbols on a 32-bit x86 processor? Inspecting the function arguments, local variables, resolving pointers would be useful to know how to do.
The intention is not really to use this for reverse engineering, as I'm sometimes just too lazy to install the debugging symbols and would be great to know how to get some basic information out of gdb.</p>
http://stackoverflow.com/questions/505759/crossplatform-threading-and-gtk-not-working-properly/537080#5370805Answer by Johan Dahlin for Crossplatform threading and GTK#, not working (properly)?Johan Dahlin2009-02-11T14:38:39Z2009-06-17T16:33:08Z<p>Gtk+ on Win32 does not properly support threading. You need to do all your GUI calls from the same thread as you did called Gtk.Main(). </p>
<p>It's not actually as bad as it sounds. There's a trick you can use to dispatch functions to the main thread. Just use GLib.Idle.Add() from any thread and the function will be called shortly in the same thread as the main loop is running in. Just remember to return false in the idle handler function, or it will go on running forever.</p>
<p>If you follow and use the above techniques you don't even need to call Gdk.Threads.Init() at all.</p>
http://stackoverflow.com/questions/319727/non-web-javascript-frameworks2Non-web Javascript frameworksJohan Dahlin2008-11-26T04:12:36Z2009-02-21T17:26:11Z
<p>Are there any good JavaScript frameworks out there which primary audience is not web programming? Especially frameworks/libraries which improves the object orientation?
The framework should be usable within an desktop application embedding a JavaScript engine (such as Spidermonkey or JavaScriptCore), so no external dependency are allowed.</p>
http://stackoverflow.com/questions/561588/what-is-more-efficient-i-or-i/561666#5616660Answer by Johan Dahlin for What is more efficient i++ or ++i?Johan Dahlin2009-02-18T15:52:50Z2009-02-18T16:31:58Z<p>It's hard to answer this precisely as it depends on the compiler/interpreter implementation.</p>
<p>But generally speaking you can say roughly extend i++ to the following instructions:</p>
<pre><code>COPY i to tmp
INCREMENT tmp
SAVE tmp as i
</code></pre>
<p>While ++i will roughly extend to:</p>
<pre><code>LOAD i
INCREMENT i
</code></pre>
<p>You can't just say that ++i is faster than i++ since language implementations are pretty smart and they can optimize these instructions when you know that you won't access the temporary value of i++. This usually happens in say a for loop. So in many cases it's just the same.</p>
<p>If you're trying to these kind of micro-optimizations I'd advice you to profile/measure before chosing one over another.</p>
http://stackoverflow.com/questions/543196/how-do-i-attach-a-remote-debugger-to-a-python-process/543258#5432582Answer by Johan Dahlin for How do I attach a remote debugger to a Python process?Johan Dahlin2009-02-12T21:07:19Z2009-02-12T21:07:19Z<p>Well, you can get something quite similar to that using a twisted manhole, which
works like this:</p>
<pre><code>from twisted.internet import reactor
from twisted.cred import portal, checkers
from twisted.conch import manhole, manhole_ssh
def getManholeFactory(namespace):
realm = manhole_ssh.TerminalRealm()
def getManhole(_):
return manhole.Manhole(namespace)
realm.chainedProtocolFactory.protocolFactory = getManhole
p = portal.Portal(realm)
p.registerChecker(
checkers.InMemoryUsernamePassword DatabaseDontUse(admin='foobar'))
f = manhole_ssh.ConchFactory(p)
return f
reactor.listenTCP(2222, getManholeFactory(globals()))
reactor.run()
</code></pre>
<p>Then you just login to the program over ssh;</p>
<pre><code>$ ssh admin@localhost -p 2222
admin@localhost's password:
</code></pre>
<p>Using <strong>foobar</strong> as the password.</p>
<p>When you login you'll get a normal python prompt where you can just poke at the data.
It's not quite the same as getting a traceback sent over to a host.</p>
<p>Now, this might be tricky to integrate to a GUI program, in that case you might need to choose another reactor, for instance for gtk based programs used the gtk2reactor etc.</p>
<p>If you want the actual traceback sent over you need to create a socket channel for both stderr, stdin and stdout which goes over the network instead of printing to your local host. Shouldn't be too hard to accomplish by using twisted.</p>
http://stackoverflow.com/questions/542953/does-gcc-work-when-the-wrapper-is-a-different-version-than-the-platform-specific/542992#5429920Answer by Johan Dahlin for Does gcc work when the wrapper is a different version than the platform-specific binary?Johan Dahlin2009-02-12T20:02:08Z2009-02-12T20:02:08Z<p>You won't use /usr/bin/gcc to cross-compile. Instead you'll install another compiler in another prefix. For instance if you're on debian/ubuntu you can install a ming (win32) cross-compiler by doing:</p>
<p>apt-get install mingw32</p>
<p>Which will work perfectly fine side by side with the normal gcc.</p>
http://stackoverflow.com/questions/541329/is-it-possible-to-programmatically-construct-a-python-stack-frame-and-start-execu/541397#5413977Answer by Johan Dahlin for Is it possible to programmatically construct a Python stack frame and start execution at an arbitrary point in the code?Johan Dahlin2009-02-12T14:13:19Z2009-02-12T14:13:19Z<p>The expat python bindings included in the normal Python distribution is constructing stack frames programtically. Be warned though, it relies on undocumented and private APIs.</p>
<p><a href="http://svn.python.org/view/python/trunk/Modules/pyexpat.c?rev=64048&view=auto" rel="nofollow">http://svn.python.org/view/python/trunk/Modules/pyexpat.c?rev=64048&view=auto</a></p>
http://stackoverflow.com/questions/517580/library-resolution-with-autoconf/518030#5180302Answer by Johan Dahlin for Library resolution with autoconf?Johan Dahlin2009-02-05T21:28:36Z2009-02-05T21:28:36Z<p>If the library ships a .pc file, consider using the PKG_CHECK_MODULES() macro which does the things you want. If it's your own library, just ship a .pc file into /usr/lib/pkgconfig, it'll make it much easier for other developers to depend/use it.</p>
http://stackoverflow.com/questions/514118/i-dont-get-duffs-device/514156#5141565Answer by Johan Dahlin for I don't get Duff's DeviceJohan Dahlin2009-02-05T01:17:26Z2009-02-05T04:52:37Z<p>The point of duffs device is to reduce the number of comparisons done in a tight memcpy implementation.</p>
<p>Suppose you want to copy 'count' bytes from a to b, the straight forward approach is to do the following:</p>
<pre><code> do {
*a = *b++;
} while (--count > 0);
</code></pre>
<p>How many times do you need to compare count to see if it's a above 0? 'count' times.</p>
<p>Now, the duff device uses a nasty unintentional side effect of a switch case which allows you to reduce the number of comparisons needed to count / 8. </p>
<p>Now suppose you want to copy 20 bytes using duffs device, how many comparisons would you need? Only 3, since you copy eight bytes at a time except the <strike>last</strike> first one where you copy just 4.</p>
<p>UPDATED: You don't have to do 8 comparisons/case-in-switch statements, but it's reasonable a trade-off between function size and speed.</p>
http://stackoverflow.com/questions/511412/combined-python-ruby-extension-module/511871#5118715Answer by Johan Dahlin for Combined Python & Ruby extension moduleJohan Dahlin2009-02-04T15:35:56Z2009-02-04T15:35:56Z<p>One way to solve it is to create three different projects:</p>
<ul>
<li>The library itself, independent on python & ruby</li>
<li>Python bindings</li>
<li>Ruby bindings</li>
</ul>
<p>That's probably the cleanest solution, albeit it requires a bit more work when doing releases, but it has the advantage that you can release a new version of the Ruby bindings without having to ship a new library/python bindings version.</p>
http://stackoverflow.com/questions/362522/switching-from-python-mode-el-to-python-el/362596#3625960Answer by Johan Dahlin for Switching from python-mode.el to python.elJohan Dahlin2008-12-12T12:20:43Z2008-12-12T12:20:43Z<p>python-mode.el is written by the Python community. python.el is written by the emacs community. I've used python-mode.el for as long as I can remember and python.el doesn't even come close to the standards of python-mode.el. I trust the Python community better than the Emacs community to come up with a decent mode file. Just stick with python-mode.el, is there really a reason not to?</p>
http://stackoverflow.com/questions/357212/rails-convert-html-to-pdf/357254#3572540Answer by Johan Dahlin for Rails: Convert HTML to PDF?Johan Dahlin2008-12-10T19:21:52Z2008-12-10T19:21:52Z<p>If you want to have really good quality (think, proper layout/CSS etc) you need to create a process embedding a real webbrowser rendering it offscreen and printing it via PDF printer driver.</p>
http://stackoverflow.com/questions/346323/xorg-loading-an-image/346433#3464331Answer by Johan Dahlin for Xorg loading an imageJohan Dahlin2008-12-06T16:14:17Z2008-12-06T16:14:17Z<p>XCreatePixmapFromBitmapData should do just that. Remember that you need to feed in data of the same bit depth as your xserver is using.</p>
http://stackoverflow.com/questions/344753/having-problem-importing-the-pil-image-library/344805#3448051Answer by Johan Dahlin for Having problem importing the PIL image libraryJohan Dahlin2008-12-05T19:00:03Z2008-12-05T19:00:03Z<p>The error above happens because your file is called Image.py and you're trying to import yourself. As Manual pointed out, you should import Image from the PIL module, but you'd also need to rename your file so it's <em>not</em> called Image.py.</p>
http://stackoverflow.com/questions/342008/is-there-a-gtk-terminal-component-that-can-be-used-under-windows/342644#3426441Answer by Johan Dahlin for Is there a GTK terminal component that can be used under Windows?Johan Dahlin2008-12-05T01:26:18Z2008-12-05T01:26:18Z<p>Maybe you want to look at the old GNOME widget called zvt, it might have been ported to Win32.</p>
http://stackoverflow.com/questions/320929/currency-formatting-in-python/321013#3210131Answer by Johan Dahlin for Currency formatting in PythonJohan Dahlin2008-11-26T15:06:36Z2008-12-04T19:27:29Z<p>Oh, that's an interesting beast.</p>
<p>I've spent considerable time of getting that right, there are three main issues that differs from locale to locale:
- currency symbol and direction
- thousand separator
- decimal point</p>
<p>I've written my own rather extensive implementation of this which is part of the kiwi python framework, check out the LGPL:ed source here:</p>
<p><a href="http://svn.async.com.br/cgi-bin/viewvc.cgi/kiwi/trunk/kiwi/currency.py?view=markup" rel="nofollow">http://svn.async.com.br/cgi-bin/viewvc.cgi/kiwi/trunk/kiwi/currency.py?view=markup</a></p>
<p>The code is slightly Linux/Glibc specific, but shouldn't be too difficult to adopt to windows or other unixes.</p>
<p>Once you have that installed you can do the following:</p>
<pre><code>>>> from kiwi.datatypes import currency
>>> v = currency('10.5').format()
</code></pre>
<p>Which will then give you:</p>
<pre><code>'$10.50'
</code></pre>
<p>or</p>
<pre><code>'10,50 kr'
</code></pre>
<p>Depending on the currently selected locale.</p>
<p>The main point this post has over the other is that it will work with older versions of python. locale.currency was introduced in python 2.5.</p>
http://stackoverflow.com/questions/120584/svg-rendering-in-a-pygame-application/341742#3417421Answer by Johan Dahlin for SVG rendering in a PyGame applicationJohan Dahlin2008-12-04T19:23:54Z2008-12-04T19:23:54Z<p>This is a complete example (beware untested) which combines hints by other people here.
It should render a file called test.svg from the current directory.</p>
<pre><code>import array
import math
import cairo
import pygame
import rsvg
WIDTH = 512
HEIGHT = 512
data = array.array('c', chr(0) * WIDTH * HEIGHT * 4)
surface = cairo.ImageSurface.create_for_data(
data, cairo.FORMAT_ARGB32, WIDTH, HEIGHT, WIDTH * 4)
pygame.init()
window = pygame.display.set_mode((WIDTH, HEIGHT))
svg = rsvg.Handle(file="test.svg")
svg.render_cairo(surface)
screen = pygame.display.get_surface()
image = pygame.image.frombuffer(data.tostring(), (WIDTH, HEIGHT),"ARGB")
screen.blit(image, (0, 0))
pygame.display.flip()
clock = pygame.time.Clock()
while True:
clock.tick(15)
for event in pygame.event.get():
if event.type == pygame.locals.QUIT:
raise SystemExit
</code></pre>
http://stackoverflow.com/questions/25661/pygame-within-a-pygtk-application/341525#3415251Answer by Johan Dahlin for pyGame within a pyGTK applicationJohan Dahlin2008-12-04T17:52:13Z2008-12-04T19:15:02Z<p><a href="http://faq.pygtk.org/index.py?file=faq23.042.htp&req=show" rel="nofollow">http://faq.pygtk.org/index.py?file=faq23.042.htp&req=show</a> mentions it all:</p>
<p>You need to create a drawing area and set the environment variable SDL_WINDOWID after it's realized:</p>
<pre>
import os
import gobject
import gtk
import pygame
WINX = 400
WINY = 200
window = gtk.Window()
window.connect('delete-event', gtk.main_quit)
window.set_resizable(False)
area = gtk.DrawingArea()
area.set_app_paintable(True)
area.set_size_request(WINX, WINY)
window.add(area)
area.realize()
# Force SDL to write on our drawing area
os.putenv('SDL_WINDOWID', str(area.window.xid))
# We need to flush the XLib event loop otherwise we can't
# access the XWindow which set_mode() requires
gtk.gdk.flush()
pygame.init()
pygame.display.set_mode((WINX, WINY), 0, 0)
screen = pygame.display.get_surface()
image_surface = pygame.image.load('foo.png')
screen.blit(image_surface, (0, 0))
gobject.idle_add(pygame.display.update)
window.show_all()
while gtk.event_pending():
# pygame/SDL event processing goes here
gtk.main_iteration(False)
</pre>
http://stackoverflow.com/questions/336013/how-to-handle-a-glade-project-with-many-windows/339212#3392124Answer by Johan Dahlin for How to handle a glade project with many windowsJohan Dahlin2008-12-04T00:13:52Z2008-12-04T00:13:52Z<p>In my projects, I always have one window per glade file. I'd recommend the same for your project.</p>
<p>The following are the two main reasons:</p>
<ul>
<li>It will be faster and use less memory, since each call to gtk.glade.XML() parses the whole thing. Sure you can pass in the root argument to avoid creating the widget tree for all windows, but you'd still have to <em>parse</em> all the XML, even if you're not interested in it.</li>
<li>Conceptually its easier to understand if have one toplevel per window. You easily know which filename a given dialog/window is in just by looking at the filename.</li>
</ul>
http://stackoverflow.com/questions/64518/whats-the-purpose-of-the-gtkwidget-events-property-for-like-gtktreeview-widget/326024#3260241Answer by Johan Dahlin for What's the purpose of the GtkWidget.events property for (like) GtkTreeView widgets?Johan Dahlin2008-11-28T15:25:42Z2008-11-28T15:25:42Z<p>It's a bug in glade, it always sets the event property of widgets it create. It has no notion of the default value of a property so it always sets it.</p>
http://stackoverflow.com/questions/314749/python-2-5-2-and-solaris-8-gcc-3-4-2-build-issues/326018#3260181Answer by Johan Dahlin for Python 2.5.2 and Solaris 8 (gcc 3.4.2) build issuesJohan Dahlin2008-11-28T15:22:16Z2008-11-28T15:22:16Z<p>The time module is not built by default in Python, if you build from a source distribution you need to explicitly enable all the modules you want to compile. </p>
<p>Open up Modules/Setup.dist in the python source tree and comment out the line which says:</p>
<pre>
#time timemodule.c
</pre>
<p>To enable the build of time module. Also remember that you need to recompile Python for this to take an effect.</p>
http://stackoverflow.com/questions/321991/embedded-web-browser-engine-for-cross-platform-desktop-application0Embedded web browser engine for cross platform desktop application?Johan Dahlin2008-11-26T20:15:08Z2008-11-26T22:19:31Z
<p>I'd like to embed a browsing engine (HTML,JS,CSS,DOM) in my desktop applications.
Which one is most suitable for me if I want to use it in a cross-platform desktop application?</p>
<p>Should I stick to one specific or write my own abstraction layer on top of the natives ones?</p>
http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/320970#32097010Answer by Johan Dahlin for The single most useful Emacs featureJohan Dahlin2008-11-26T14:56:20Z2008-11-26T14:56:20Z<p>M-x rgrep</p>
<p>I've bound it to F4, I'm using it all the time to interactively greping for file in a recursive manner. Combine that with easy bindings for next-error (F9), previous-error (shift-F9) and you have struck gold!</p>
<p>It always makes my co-workers impressed how quickly I can find things. No tags needed and it's /very/ fast.</p>
http://stackoverflow.com/questions/319725/which-are-your-favorite-gdb-tricks9Which are your favorite GDB tricks?Johan Dahlin2008-11-26T04:09:58Z2008-11-26T14:55:30Z
<p>Which is your favorite macro/trick in gdb? Have you written any good macros for improving language integration? What's your best way of making the debugging experience inside gdb less painful?</p>
http://stackoverflow.com/questions/126978/orm-handwritten-schema-or-auto-generated4ORM: Handwritten schema or auto-generated?Johan Dahlin2008-09-24T13:01:29Z2008-11-26T14:44:43Z
<p>Should I use a hand-written schema for my projected developed in a high-level language (such as Python, Ruby) or should I let my ORM solution auto-generate it?
Eventually I will need to migrate without destroying all the data. It's okay to be tied to a specific RDBMS but it would be nice if features such as constraints and procedures could be supported somehow.</p>
http://stackoverflow.com/questions/319554/purchase-order-system/319773#3197731Answer by Johan Dahlin for Purchase Order SystemJohan Dahlin2008-11-26T04:52:42Z2008-11-26T14:19:34Z<p>Is it necessary for the POS to be written in .NET?
Wikipedia has a good overview of available ERPs, which is a superset of POS:
<a href="http://en.wikipedia.org/wiki/Category:Free_ERP_software" rel="nofollow">http://en.wikipedia.org/wiki/Category:Free_ERP_software</a></p>
<p>I'd recommend Stoq, <a href="http://www.stoq.com.br/" rel="nofollow">http://www.stoq.com.br/</a> which is written in Python (Note, I'm a developer on that project myself)</p>
http://stackoverflow.com/questions/319725/which-are-your-favorite-gdb-tricks/319781#3197811Answer by Johan Dahlin for Which are your favorite GDB tricks?Johan Dahlin2008-11-26T04:54:32Z2008-11-26T04:54:32Z<p>One of my favorite tricks is a macro to make it easier to debug Python (CPython to be fair) applications:</p>
<pre>
define pyp
if PyObject_Repr ($arg0)
print PyString_AsString(PyObject_Repr($arg0))
end
end
</pre>
http://stackoverflow.com/questions/66730/how-do-i-create-a-new-signal-in-pygtk/126355#1263550Answer by Johan Dahlin for How do I create a new signal in pygtkJohan Dahlin2008-09-24T10:14:06Z2008-09-24T12:47:34Z<p>If you use kiwi available <a href="http://kiwi.async.com.br/" rel="nofollow">here</a> you can just do:</p>
<pre><code>from kiwi.utils import gsignal
class MyObject(gobject.GObject):
gsignal('signal-name')
</code></pre>
http://stackoverflow.com/questions/203303/how-do-you-beat-rsi/203364#203364Comment by Johan Dahlin on How do you beat RSI?Johan Dahlin2009-11-20T23:00:17Z2009-11-20T23:00:17ZI would not advice to buy "Microsoft Ergonomic Keyboard 4000", there are much better ergonomic keyboards out there http://stackoverflow.com/questions/1771940/calayer-filters-and-bounds/1773689#1773689Comment by Johan Dahlin on CALayer filters and boundsJohan Dahlin2009-11-20T22:52:58Z2009-11-20T22:52:58ZIf you want to address Rhult's comments, do it in a comment to his post instead of adding a new answer to your question.http://stackoverflow.com/questions/505759/crossplatform-threading-and-gtk-not-working-properly/537080#537080Comment by Johan Dahlin on Crossplatform threading and GTK#, not working (properly)?Johan Dahlin2009-06-17T16:33:31Z2009-06-17T16:33:31Zthanks monoxide, I updated the texthttp://stackoverflow.com/questions/604749/python-api-to-access-webcam-streamComment by Johan Dahlin on Python API to access webcam stream?Johan Dahlin2009-03-03T03:04:12Z2009-03-03T03:04:12ZPlease clarify which operating systems you need to support.http://stackoverflow.com/questions/505759/crossplatform-threading-and-gtk-not-working-properly/537080#537080Comment by Johan Dahlin on Crossplatform threading and GTK#, not working (properly)?Johan Dahlin2009-02-13T11:22:03Z2009-02-13T11:22:03ZWoho! Thanks for the 300 points!http://stackoverflow.com/questions/521476/why-true-false-is-capitalized-in-python/521488#521488Comment by Johan Dahlin on Why True/False is capitalized in Python?Johan Dahlin2009-02-06T18:33:33Z2009-02-06T18:33:33ZMust have been inventedhttp://stackoverflow.com/questions/362724/how-do-i-get-gdb-to-ignore-my-shell-windows-sizeComment by Johan Dahlin on How do I get gdb to ignore my shell window's size?Johan Dahlin2008-12-16T22:57:42Z2008-12-16T22:57:42ZYeah, much better. Remember to revert the question so it doesn't contain the answerhttp://stackoverflow.com/questions/367969/libtool-adding-extra-u-to-so-file-namesComment by Johan Dahlin on libtool adding extra 'U' to .so file namesJohan Dahlin2008-12-16T13:13:40Z2008-12-16T13:13:40ZYou should probably revert the last edit and answer the question properly instead.http://stackoverflow.com/questions/320929/currency-formatting-in-python/321013#321013Comment by Johan Dahlin on Currency formatting in PythonJohan Dahlin2008-12-04T17:53:38Z2008-12-04T17:53:38ZOnly that it works in pre-python 2.5.http://stackoverflow.com/questions/324214/what-is-the-fastest-way-to-parse-large-xml-docs-in-python/324236#324236Comment by Johan Dahlin on What is the fastest way to parse large XML docs in Python?Johan Dahlin2008-11-28T15:18:34Z2008-11-28T15:18:34ZThis should be upped, callbacks in python are really slow, you want to avoid that and do as much as possible in C land.http://stackoverflow.com/questions/48123/glade-or-no-glade-what-is-the-best-way-to-use-pygtkComment by Johan Dahlin on Glade or no glade: What is the best way to use PyGtk?Johan Dahlin2008-11-26T14:18:09Z2008-11-26T14:18:09ZThere are more UI builders than just glade, maybe you should mention "UI builder" instead of just glade.http://stackoverflow.com/questions/319764/recursive-make-friend-or-foe/319858#319858Comment by Johan Dahlin on Recursive Make - friend or foe?Johan Dahlin2008-11-26T14:17:19Z2008-11-26T14:17:19ZYou're right. Easier reusage of common targets is another advantagehttp://stackoverflow.com/questions/319764/recursive-make-friend-or-foe/320585#320585Comment by Johan Dahlin on Recursive Make - friend or foe?Johan Dahlin2008-11-26T14:16:33Z2008-11-26T14:16:33ZI already know GNU autotools too well and I'm getting increasingly old to learn a new system. Maybe in another 5 years :-)http://stackoverflow.com/questions/319764/recursive-make-friend-or-foe/319881#319881Comment by Johan Dahlin on Recursive Make - friend or foe?Johan Dahlin2008-11-26T14:13:38Z2008-11-26T14:13:38ZThat's a good reference, thanks for pointing it out.http://stackoverflow.com/questions/319764/recursive-make-friend-or-foe/320527#320527Comment by Johan Dahlin on Recursive Make - friend or foe?Johan Dahlin2008-11-26T14:09:55Z2008-11-26T14:09:55ZGreat answer, thanks!
I'm actually using VPATH even for a project using recursive make files, it makes like a lot easier, especially for srcdir != builddir builds.