[digraphanalysis-cvs] digraphanalysis/src/libdigraph SConstruct, Makefile,
Status: Planning
Brought to you by:
jbreker
|
From: Jeff B. <jb...@us...> - 2005-09-20 15:21:39
|
Update of /cvsroot/digraphanalysis/digraphanalysis/src/libdigraph In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13869 Added Files: SConstruct Removed Files: Makefile Log Message: sigh... lets try using scons for a while... --- NEW FILE: SConstruct --- env = Environment() digraph_static = Library('digraph', 'digraph.c') digraph_shared = SharedLibrary('digraph', 'digraph.c') env.Install('/usr/local/lib', [digraph_static, digraph_shared]) env.Install('/usr/local/include', 'digraph.h') env.Alias('install', ['/usr/local/lib', '/usr/local/include']) --- Makefile DELETED --- |