-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.Makefile.objs
65 lines (52 loc) · 1020 Bytes
/
.Makefile.objs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Objs
FLIST_OBJS = \
flist/flist.o \
flist/fdlist.o
FCACHE_OBJS = \
fcache/fcache.o \
fcache/fcache_list.o
FHASH_OBJS = \
fhash/fhash_core.o \
fhash/fhash_int.o \
fhash/fhash_str.o \
fhash/fhash_uint64.o
FMBUF_OBJS = \
fmbuf/fmbuf.o
FCO_OBJS = \
fco/fco.o
FNET_OBJS = \
fnet/fnet.o
FTIME_OBJS = \
ftime/ftime.o \
ftime/ftimefd.o
FLOCK_OBJS = \
flock/flock.o
FTHPOOL_OBJS = \
fthread_pool/fthread_pool.o
FCONF_OBJS = \
fconf/fconf_core.o \
fconf/fconf.o
FLOG_OBJS = \
flog/flog.o
FEV_OBJS = \
fev/fev.o \
fev/fev_buff.o \
fev/fev_conn.o \
fev/fev_listener.o \
fev/fev_timer.o \
fev/fev_timer_service.o \
fev/fev_tmsvc_modules.o \
fev/fev_tmsvc_sl_mod.o
FLIBS_OBJS = \
$(FLIST_OBJS) \
$(FCACHE_OBJS) \
$(FHASH_OBJS) \
$(FMBUF_OBJS) \
$(FCO_OBJS) \
$(FNET_OBJS) \
$(FTIME_OBJS) \
$(FLOCK_OBJS) \
$(FTHPOOL_OBJS) \
$(FCONF_OBJS) \
$(FLOG_OBJS) \
$(FEV_OBJS)