Changeset 90

Show
Ignore:
Timestamp:
12/20/07 07:38:14 (4 years ago)
Author:
ecn
Message:
  • rename swctools to hightest
Files:

Legend:

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

    r89 r90  
    1 SWCT=$(PWD) 
     1HT=$(PWD) 
    22CC=gcc 
    33PROFILE=-pg -fprofile-arcs -ftest-coverage 
     
    77DEPFLAGS= -MMD -MF$(@D)/.$(@F) 
    88CFLAGS=$(DEBUGFLAGS) $(IFLAGS) $(WFLAGS) $(DEPFLAGS) $(PROFILE) 
    9 LDFLAGS=$(PROFILE) -Wl,-rpath,$(SWCT)/top/lib -L$(SWCT)/top/lib -lstdc++ -lexpat 
     9LDFLAGS=$(PROFILE) -Wl,-rpath,$(HT)/top/lib -L$(HT)/top/lib -lstdc++ -lexpat 
    1010DYNAMIC_TEST=$(patsubst %.cpp,%.so,$(wildcard src/*/test.cpp src/*/*/test.cpp)) 
    1111SHLINK=@echo Linking library $@ ; $(CC) -shared -o $@  
     
    8181$(INSTALLED_DEPS): deps/%/.installed: deps/%/.unpacked 
    8282        cd deps/$* ;                    \ 
    83         ./configure --prefix $(SWCT)/top ;    \ 
     83        ./configure --prefix $(HT)/top ;      \ 
    8484        make && make install && touch .installed 
    8585