diff options
author | midipix <writeonce@midipix.org> | 2018-05-20 23:57:55 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-05-21 02:23:31 -0400 |
commit | f3d5e0453751c9d4bcaa62259637901d8b59285a (patch) | |
tree | 660adc772240d1832efd2de27c3a13b3cc6d2a34 /project | |
parent | da20d860b28d7b3c1085964b784f58772c7ba263 (diff) | |
download | ntux-f3d5e0453751c9d4bcaa62259637901d8b59285a.tar.bz2 ntux-f3d5e0453751c9d4bcaa62259637901d8b59285a.tar.xz |
ntux_cmd_stat(): initial implementation and integration.
Diffstat (limited to 'project')
-rw-r--r-- | project/common.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/project/common.mk b/project/common.mk index 1be73a6..4790bc0 100644 --- a/project/common.mk +++ b/project/common.mk @@ -11,6 +11,9 @@ INTERNAL_SRCS = \ src/internal/ntux_ntaio_impl.c \ src/internal/ntux_strerr_impl.c \ +CMD_SRCS = \ + src/cmds/ntux_cmd_stat.c \ + OUTPUT_SRCS = \ src/output/ntux_output_error.c \ @@ -20,4 +23,5 @@ APP_SRCS = \ COMMON_SRCS = \ $(DRIVER_SRCS) \ $(INTERNAL_SRCS) \ + $(CMD_SRCS) \ $(OUTPUT_SRCS) \ |