Changeset 98
- Timestamp:
- 12/20/07 08:28:29 (4 years ago)
- Files:
-
- trunk/hightest/GNUmakefile (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/hightest/GNUmakefile
r90 r98 14 14 getobjs=$(patsubst %.cpp,%.o,$(filter-out $(1)/test.cpp,$(wildcard $(1)/*.cpp))) 15 15 16 all: env modules runtest editor16 all: env modules runtest octane 17 17 18 18 env: … … 23 23 include $(wildcard src/*/MakeInclude src/*/*/MakeInclude) 24 24 25 editor: src/editor/LayoutEditor.swf25 octane: src/octane/LayoutEditor.swf 26 26 27 27 MXMLC=$(FLEXSDK)/bin/mxmlc 28 28 FLAGS=-debug 29 29 SGL=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 $@30 src/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 $@ 32 32 33 33 modules: deps-installed $(MODULES) … … 43 43 @rm -rf docs/html docs/latex 44 44 @rm -f testout 45 46 publish: doc 47 scp -r -q -P 1337 -r docs/html trac.swcomplete.com:/trac/hightest/htdocs 45 48 46 49 $(OBJS): %.o : %.cpp … … 66 69 top/bin/doxygen src/Doxyfile 67 70 68 runEditorConfig: src/ editor/LayoutEditor.swf src/graph/example/nodes.so src/graph/example/example71 runEditorConfig: src/octane/LayoutEditor.swf src/graph/example/nodes.so src/graph/example/example 69 72 @echo using input: 70 73 @echo -e ---------------------- … … 72 75 @echo -e ---------------------- 73 76 @echo running... 74 @LD_LIBRARY_PATH=src/graph/example src/graph/example/example src/ editor/config.xml < src/graph/example/testinput.txt77 @LD_LIBRARY_PATH=src/graph/example src/graph/example/example src/octane/config.xml < src/graph/example/testinput.txt 75 78 @echo finished. 76 79
