root/trunk/src/client/sysint/module.mk.in @ 6524

Revision 6524, 1.4 KB (checked in by pw, 5 years ago)

Remove client lookup-ncache.sm, pulling its functionality into the only
user, sys-lookup.sm. This change should have no effect on behavior, just
a rearrangement of the state machines.

Line 
1DIR := src/client/sysint
2
3CSRC := \
4        $(DIR)/finalize.c \
5        $(DIR)/initialize.c \
6        $(DIR)/acache.c \
7        $(DIR)/ncache.c \
8        $(DIR)/pint-sysint-utils.c \
9        $(DIR)/getparent.c \
10        $(DIR)/client-state-machine.c \
11        $(DIR)/mgmt-get-config.c \
12        $(DIR)/mgmt-misc.c \
13        $(DIR)/sys-dist.c \
14        $(DIR)/error-details.c
15
16CLIENT_SMCGEN := \
17        $(DIR)/remove.c \
18        $(DIR)/sys-getattr.c \
19        $(DIR)/sys-setattr.c \
20        $(DIR)/sys-get-eattr.c \
21        $(DIR)/sys-set-eattr.c \
22        $(DIR)/sys-del-eattr.c \
23        $(DIR)/sys-list-eattr.c \
24        $(DIR)/sys-lookup.c \
25        $(DIR)/sys-truncate.c \
26        $(DIR)/sys-io.c \
27        $(DIR)/sys-small-io.c \
28        $(DIR)/sys-create.c \
29        $(DIR)/sys-mkdir.c \
30        $(DIR)/sys-remove.c \
31        $(DIR)/sys-flush.c \
32        $(DIR)/sys-symlink.c \
33        $(DIR)/sys-readdir.c \
34        $(DIR)/sys-readdirplus.c \
35        $(DIR)/sys-rename.c \
36        $(DIR)/sys-statfs.c \
37        $(DIR)/client-job-timer.c \
38        $(DIR)/perf-count-timer.c \
39        $(DIR)/pint-sysdev-unexp.c \
40        $(DIR)/server-get-config.c \
41        $(DIR)/fs-add.c \
42        $(DIR)/mgmt-noop.c \
43        $(DIR)/mgmt-setparam-list.c \
44        $(DIR)/mgmt-statfs-list.c \
45        $(DIR)/mgmt-perf-mon-list.c \
46        $(DIR)/mgmt-event-mon-list.c \
47        $(DIR)/mgmt-iterate-handles-list.c \
48        $(DIR)/mgmt-get-dfile-array.c \
49        $(DIR)/mgmt-remove-object.c \
50        $(DIR)/mgmt-remove-dirent.c \
51        $(DIR)/mgmt-create-dirent.c \
52        $(DIR)/mgmt-get-dirdata-handle.c
53
54# track generated .c files that need to be removed during dist clean, etc.
55SMCGEN += $(CLIENT_SMCGEN)
56
57# list of all .c files (generated or otherwise) that belong in library
58LIBSRC += $(CSRC) $(CLIENT_SMCGEN)
Note: See TracBrowser for help on using the browser.