[PATCH] Parallel compilation...
Ed Arino
EdA at phyve.com
Thu May 23 13:07:10 EDT 2002
An incredibly silly little patch to the makefile to allow for parallel
compiling (make -j N and the sort)... but still marginally useful for me
when building software on 50 node cluster... Now, the second question...
this library isn't pthread aware, is it? Is there any interest in making
this library "thread aware"? If so, I would be glad to begin (or aid) in
such work.
Eduardo
Patch follows:
--- makefile-old Thu Feb 3 23:30:56 2000
+++ makefile Thu May 23 14:55:35 2002
@@ -5,15 +5,15 @@
VER=245
all:
- cd ga; make
- cd examples; make
+ cd ga && ${MAKE}
+ cd examples && ${MAKE}
install:
- cd ga; make install
+ cd ga && ${MAKE} install
clean:
- cd ga; make clean
- cd examples; make clean
+ cd ga && ${MAKE} clean
+ cd examples && ${MAKE} clean
-------------- next part --------------
A non-text attachment was scrubbed...
Name: makefile.patch
Type: application/octet-stream
Size: 436 bytes
Desc: not available
Url : http://mailman.mit.edu/pipermail/galib/attachments/20020523/bad3a065/attachment.obj
More information about the galib
mailing list