summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 9 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index dbe8bcc..bfe5c46 100644
--- a/Makefile
+++ b/Makefile
@@ -28,7 +28,7 @@ LIB_NAME = syscalls
all: libsyscalls.a libsyscalls.$(LIBEXT)
-#extended for each support operating system to download the operating system's source code
+#extended for each supported operating system to download the operating system's source code
download:
@@ -79,24 +79,24 @@ include $(CONFIGFILE)
# Reloading the user's config in case it limits supported architectures
-#this not modify, this is a help variable to get the # symbol into sed scripts
+# Do not modify: helper variable to get the # symbol into sed scripts
h = '"$$(printf '\43\n')"'
-#this not modify, this is a help variable to make [[:space:]] shorter
+# Do not modify: helper variable to make [[:space:]] shorter
s = [[:space:]]
-#extended for each support operating system with the operating system's name as appropriate for filenames
+#extended for each supported operating system with the operating system's name as appropriate for file names
OPERATING_SYSTEMS =
#extended with supported architectures for each operating system
TEST_ENV =
-#extended for each support operating system with the number of syscall parameters they use
+#extended for each supported operating system with the number of syscall parameters it uses
NPARAMS =
-#extended for each support operating system with the maximum used number of fields in its structs and unions
+#extended for each supported operating system with the maximum used number of fields in its structs and unions
NFIELDS =
-#extended for each support operating system
+#extended for each supported operating system
OBJ =\
libsyscalls_get_datatype_description.o\
libsyscalls_get_integer_alignment.o\
@@ -106,6 +106,7 @@ OBJ =\
libsyscalls_get_syscall_display_info.o\
libsyscalls_get_syscall_errors.o\
libsyscalls_get_syscall_range.o\
+ libsyscalls_find_named_number.o\
libsyscalls_make_signed_integer.o\
libsyscalls_parse_signed_integer.o\
libsyscalls_perror.o\
@@ -151,6 +152,7 @@ TESTUTILS =\
testutil/section-value.tu\
testutil/strerror-all.tu\
testutil/strerror-bad.tu\
+ testutil/test-search.tu\
testutil/to-tracee-endian.tu\
testutil/to-tracer-endian.tu\
testutil/unsection-value.tu