Show
Ignore:
Timestamp:
11/20/08 22:00:50 (16 years ago)
Author:
ahe
Message:

update socket

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • vtcross/branches/trnewman/CR_shell/Makefile

    r62 r66  
    33# 
    44 
    5 TESTS = cognitive_radio 
    6 all: $(TESTS) 
     5TESTS = cognitive_radio cognitive_engine 
     6#CTESTS = client 
     7all: $(TESTS) $(CTESTS) 
    78 
    89CC = g++ 
     10cc = gcc 
    911CFLAGS = -Wall -O3 
    1012LDFLAGS = -lm -ldl -pthread -lnsl 
     
    3032        $(CC) $(CFLAGS) $(OBJS) $(SOCKET_OBJS) $(LDFLAGS) $< -o $@ 
    3133 
     34$(CTESTS) : % : src/main_%.c 
     35                $(cc) $(CFLAGS) $(LDFLAGS) $< -o $@ 
     36 
    3237clean: 
    3338        rm -rf *.o socket/*.o $(TESTS)