This is not a request but an idea for the future.

Tipically an ajax apps made with Harbour is made suing many includes like:

file0.prg:

#include "file1.ch"

function main()

   local cContent := ""

   <some prg code>

   #pragma __cstreaminclude "file2.xhtml"|cContent+=%s

   #pragma __cstreaminclude "file3.js"|cContent+=%s

   <some prg code>

   return cContent

file0.prg depends on file1.ch, file2.xhtml, file3.js and file3.js can
also be included in many prgs.

So every time a file is created the Makefiles need to be updated if
not if you change file3.js the make doesn't rebuild fileo.prg.

To "solve" this gcc has a series of -M* flags that automatically would
creates sth like:

file0.prg: file1.ch file2.xhtml file3.js

file0.o: file0.prg

It would be great if Harbour would have sth like this.

best regards,
Lorenzo
_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to