Changeset 16 for vtcross/trunk

Show
Ignore:
Timestamp:
10/10/08 11:46:33 (16 years ago)
Author:
ahe
Message:

adding sqlite3 source (sorry such a huge file), cbr test

Location:
vtcross/trunk
Files:
6 added
1 modified

Legend:

Unmodified
Added
Removed
  • vtcross/trunk/Makefile

    r14 r16  
    33# 
    44 
    5 all: cognitive_radio_test utility_test 
     5all: cognitive_radio_test utility_test cbr_test 
    66 
    77main_test.o: src/main_test.c 
     
    2323        gcc -Wall utility.o main_utility.o -lm -o utility_test 
    2424 
     25#  
     26# case database targets 
     27# 
     28 
     29sqlite3.o: src/sqlite3.c src/sqlite3.h 
     30        gcc -c src/sqlite3.c -o sqlite3.o 
     31 
     32cbr.o: src/cbr.c src/cbr.h src/sqlite3.h 
     33        gcc -Wall -c src/cbr.c -o cbr.o 
     34 
     35main_cbr.o: src/main_cbr.c src/cbr.h 
     36        gcc -Wall -c src/main_cbr.c -o main_cbr.o 
     37 
     38cbr_test: sqlite3.o cbr.o main_cbr.o 
     39        gcc -Wall sqlite3.o cbr.o main_cbr.o -ldl -pthread -o cbr_test 
     40 
     41# 
     42# cleanup 
     43# 
     44 
    2545clean: 
    2646        rm -rf *.o *_test