blob: 0b9e12392c1bd9c544d404c4b801d14ce720fcd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
SubDir TOP base ;
Library libbase :
base_cpudep.c
base_error.c
base_hash.c
base_matrix.c
base_memory.c
base_rect.c
base_rune.c
base_cleanname.c
;
if $(NEED_STRLCPY) { Library libbase : util_strlcpy.c ; }
if $(NEED_STRSEP) { Library libbase : util_strsep.c ; }
if $(NEED_GETOPT) { Library libbase : util_getopt.c ; }
# MSVC does not have gettimeofday()
if $(OS) = NT
{
Library libbase : util_gettimeofday.c ;
}
|