From: Simon Marlow Date: Tue, 20 Nov 2007 10:33:29 +0000 (+0000) Subject: Always do 'setup makefile' before building each library X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=5ca2e94ede1ff4ef411ebf060aa91845a03414ee;hp=5ca2e94ede1ff4ef411ebf060aa91845a03414ee;p=ghc-hetmet.git Always do 'setup makefile' before building each library This forces preprocessing to happen, which is necessary if any of the .hsc files have been modified. Without this change, a 'setup makefile' would be required by hand after a .hsc file changed. Fortunately 'setup makefile' isn't much extra work, and I've made it not overwrite GNUmakefile if it hasn't changed, which avoids recalculating the dependencies each time. ---