Changeset 90
- Timestamp:
- 12/20/07 07:38:14 (4 years ago)
- Files:
-
- trunk/hightest (copied) (copied from trunk/swctools)
- trunk/hightest/GNUmakefile (copied) (copied from trunk/swctools/GNUmakefile) (3 diffs)
- trunk/hightest/deps/cppunit-1.12.0.tar.gz (added)
- trunk/hightest/src/editor/config.xml (copied) (copied from trunk/swctools/src/editor/config.xml)
- trunk/hightest/src/editor/domain.xml (copied) (copied from trunk/swctools/src/editor/domain.xml)
- trunk/hightest/src/graph/example/Spell.cpp (copied) (copied from trunk/swctools/src/graph/example/Spell.cpp)
- trunk/hightest/src/graph/example/WordEmitter.cpp (copied) (copied from trunk/swctools/src/graph/example/WordEmitter.cpp)
- trunk/hightest/src/graph/example/run.sh (copied) (copied from trunk/swctools/src/graph/example/run.sh)
- trunk/hightest/src/options/test.cpp (copied) (copied from trunk/swctools/src/options/test.cpp)
- trunk/swctools/deps/cppunit-1.10.2.tar.gz (deleted)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/hightest/GNUmakefile
r89 r90 1 SWCT=$(PWD)1 HT=$(PWD) 2 2 CC=gcc 3 3 PROFILE=-pg -fprofile-arcs -ftest-coverage … … 7 7 DEPFLAGS= -MMD -MF$(@D)/.$(@F) 8 8 CFLAGS=$(DEBUGFLAGS) $(IFLAGS) $(WFLAGS) $(DEPFLAGS) $(PROFILE) 9 LDFLAGS=$(PROFILE) -Wl,-rpath,$( SWCT)/top/lib -L$(SWCT)/top/lib -lstdc++ -lexpat9 LDFLAGS=$(PROFILE) -Wl,-rpath,$(HT)/top/lib -L$(HT)/top/lib -lstdc++ -lexpat 10 10 DYNAMIC_TEST=$(patsubst %.cpp,%.so,$(wildcard src/*/test.cpp src/*/*/test.cpp)) 11 11 SHLINK=@echo Linking library $@ ; $(CC) -shared -o $@ … … 81 81 $(INSTALLED_DEPS): deps/%/.installed: deps/%/.unpacked 82 82 cd deps/$* ; \ 83 ./configure --prefix $( SWCT)/top ; \83 ./configure --prefix $(HT)/top ; \ 84 84 make && make install && touch .installed 85 85
