test/Makefile

changeset 156
6a4bd1f4c57e
parent 155
45395ba5ed30
child 164
1fa3f13f774c
     1.1 --- a/test/Makefile	Mon Sep 09 10:48:08 2013 +0200
     1.2 +++ b/test/Makefile	Mon Sep 09 11:54:32 2013 +0200
     1.3 @@ -45,21 +45,21 @@
     1.4  debug: ../build/debug/test ../build/debug/test/ucxtest$(APP_EXT)
     1.5  
     1.6  ../build/release/test/ucxtest$(APP_EXT): $(OBJ)
     1.7 -	$(LD) $(LDFLAGS) $(LOFLAGS)../build/release/test/ucxtest$(APP_EXT) \
     1.8 +	$(LD) $(LDFLAGS) -o ../build/release/test/ucxtest$(APP_EXT) \
     1.9  		$(OBJ) ../build/release/libucx$(LIB_EXT)
    1.10  
    1.11  ../build/release/test/%$(OBJ_EXT): %.c
    1.12 -	$(CC) $(CFLAGS) -I../ $(COFLAGS)$@ $<
    1.13 +	$(CC) $(CFLAGS) -I../ -o $@ -c $<
    1.14  
    1.15  ../build/release/test:
    1.16  	$(MKDIR) $(MKDIRFLAGS) ../build/release/test
    1.17  
    1.18  ../build/debug/test/ucxtest$(APP_EXT): $(OBJ_D)
    1.19 -	$(LD) $(LDFLAGS_D) $(LOFLAGS)../build/debug/test/ucxtest$(APP_EXT) \
    1.20 +	$(LD) $(LDFLAGS) -o ../build/debug/test/ucxtest$(APP_EXT) \
    1.21  		$(OBJ_D) ../build/debug/libucx$(LIB_EXT)
    1.22  
    1.23  ../build/debug/test/%$(OBJ_EXT): %.c
    1.24 -	$(CC) $(CFLAGS_D) -I../ $(COFLAGS)$@ $<
    1.25 +	$(CC) $(CFLAGS_D) -I../ -o $@ -c $<
    1.26  
    1.27  ../build/debug/test:
    1.28  	$(MKDIR) $(MKDIRFLAGS) ../build/debug/test

mercurial