1 |
# |
2 |
# Makefile.config |
3 |
# |
4 |
# this file contains specific configuration for a given directory '.../Vx/xxx' |
5 |
# by defining the working directory name, any special include search path |
6 |
# directories, the source file list (used for make 'depend'), and the object |
7 |
# module list (used by default user target). |
8 |
# |
9 |
|
10 |
|
11 |
# |
12 |
# extra switches for each machine flavor |
13 |
# |
14 |
|
15 |
M30INX = |
16 |
|
17 |
X486INX = |
18 |
|
19 |
# |
20 |
# Define the source list for FileTransfer |
21 |
# |
22 |
|
23 |
SRCS =\ |
24 |
$(SRC)/FT_sftp.c \ |
25 |
$(SRC)/FT_sftpd.c \ |
26 |
$(SRC)/FT_shared.c \ |
27 |
# --- |
28 |
|
29 |
# |
30 |
# Define the object list for dbEmulator |
31 |
# |
32 |
|
33 |
OBJS =\ |
34 |
FT_sftpd.o \ |
35 |
FT_sftp.o \ |
36 |
FT_shared.o \ |
37 |
# --- |
38 |
|
39 |
# |
40 |
# object list for SecFT |
41 |
# |
42 |
|
43 |
PRIV_OBJS =\ |
44 |
SecFT_sftp.o \ |
45 |
SecFT_sftpd.o \ |
46 |
SecFT_shared.o \ |
47 |
# --- |
48 |
|
49 |
# |
50 |
# END of Makefile.config |
51 |
# |