Changeset 98

Show
Ignore:
Timestamp:
12/20/07 08:28:29 (4 years ago)
Author:
ecn
Message:
  • rename swct namespace to ht
  • make all exceptions children of BaseException?
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/hightest/GNUmakefile

    r90 r98  
    1414getobjs=$(patsubst %.cpp,%.o,$(filter-out $(1)/test.cpp,$(wildcard $(1)/*.cpp))) 
    1515 
    16 all: env modules runtest editor 
     16all: env modules runtest octane 
    1717 
    1818env: 
     
    2323include $(wildcard src/*/MakeInclude src/*/*/MakeInclude) 
    2424 
    25 editor: src/editor/LayoutEditor.swf 
     25octane: src/octane/LayoutEditor.swf 
    2626 
    2727MXMLC=$(FLEXSDK)/bin/mxmlc 
    2828FLAGS=-debug 
    2929SGL=top/lib/SpringGraph.swc 
    30 src/editor/LayoutEditor.swf: $(wildcard src/editor/*.mxml src/editor/*.as) 
    31         $(MXMLC) $(FLAGS) -source-path $(<D) -library-path+="$(SGL)" -file-specs src/editor/LayoutEditor.mxml -output $@ 
     30src/octane/LayoutEditor.swf: $(wildcard src/octane/*.mxml src/octane/*.as) 
     31        $(MXMLC) $(FLAGS) -source-path $(<D) -library-path+="$(SGL)" -file-specs src/octane/LayoutEditor.mxml -output $@ 
    3232 
    3333modules: deps-installed $(MODULES)  
     
    4343        @rm -rf docs/html docs/latex 
    4444        @rm -f testout 
     45 
     46publish: doc 
     47        scp -r -q -P 1337 -r docs/html trac.swcomplete.com:/trac/hightest/htdocs 
    4548 
    4649$(OBJS): %.o : %.cpp 
     
    6669        top/bin/doxygen src/Doxyfile 
    6770 
    68 runEditorConfig: src/editor/LayoutEditor.swf src/graph/example/nodes.so src/graph/example/example 
     71runEditorConfig: src/octane/LayoutEditor.swf src/graph/example/nodes.so src/graph/example/example 
    6972        @echo using input: 
    7073        @echo -e ---------------------- 
     
    7275        @echo -e ---------------------- 
    7376        @echo running... 
    74         @LD_LIBRARY_PATH=src/graph/example src/graph/example/example src/editor/config.xml < src/graph/example/testinput.txt 
     77        @LD_LIBRARY_PATH=src/graph/example src/graph/example/example src/octane/config.xml < src/graph/example/testinput.txt 
    7578        @echo finished. 
    7679