OSDN Git Service

[gcc] io_test.cpp Add.
[roast/roast.git] / roast / test / linux_test2 / Makefile
1 # Roast test Makefile
2
3 CC = g++
4 INCLUDES = -I../../include
5 #CFLAGS = -O3
6 CFLAGS = -O0 -g
7
8 COPTS = $(INCLUDES) $(CFLAGS)
9 COMP = $(CC) $(COPTS)
10
11 #=========================
12
13 all: test
14 lex:
15         $(COMP) lex2_test.cpp
16 it:
17         $(COMP) iterator_test.cpp
18 ht:
19         $(COMP) http_test.cpp
20 lex_test:
21         $(COMP) lex_test.cpp
22 thread_test:
23         $(COMP) thread_test.cpp 
24 process_test:
25         $(COMP) process_test.cpp 
26 socket_test:
27         $(COMP) socket_test.cpp 
28 io:
29         $(COMP) io_test.cpp 
30 test:
31         $(COMP) test.cpp 
32
33