|
Revision 8389, 1.5 KB
(checked in by bligon, 3 years ago)
|
|
added mgmt-migrate.c
|
| Line | |
|---|
| 1 | DIR := src/client/sysint |
|---|
| 2 | |
|---|
| 3 | CSRC := \ |
|---|
| 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 | |
|---|
| 16 | CLIENT_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 | $(DIR)/mgmt-migrate.c |
|---|
| 54 | |
|---|
| 55 | # track generated .c files that need to be removed during dist clean, etc. |
|---|
| 56 | SMCGEN += $(CLIENT_SMCGEN) |
|---|
| 57 | |
|---|
| 58 | # list of all .c files (generated or otherwise) that belong in library |
|---|
| 59 | LIBSRC += $(CSRC) $(CLIENT_SMCGEN) |
|---|