Skip to content

Commit 4eba5ae

Browse files
authored
Cleanup: removed dead code (#15)
* updated readme; removed link to private google doc * removed dead code * one more file
1 parent 3eac598 commit 4eba5ae

12 files changed

+1
-35013
lines changed

Makefile

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
all: rtld_loader.so
33

44
.PHONY: test
5-
test: binsearch_lookup_test.bin string_funs_test.bin env_parser_test.bin dynamic_lookup_test.bin rtld_loader.so
6-
./binsearch_lookup_test.bin
5+
test: string_funs_test.bin env_parser_test.bin dynamic_lookup_test.bin rtld_loader.so
76
./string_funs_test.bin
87
./env_parser_test.bin
98
python3 test/dynamic_lookup_test.py
@@ -12,12 +11,6 @@ test: binsearch_lookup_test.bin string_funs_test.bin env_parser_test.bin dynamic
1211
rtld_loader.so: $(shell find src -type f)
1312
gcc -shared -nostdlib -fno-stack-protector -fPIC -O2 src/*.c -o rtld_loader.so
1413

15-
src/lookup_by_channel.generated.c: scripts/gen_lookup_by_channel.py $(shell find registry -type f)
16-
python scripts/gen_lookup_by_channel.py
17-
18-
binsearch_lookup_test.bin: test/binsearch_lookup_test.c src/string_funs.[ch] src/binsearch_lookup.[ch]
19-
gcc $^ -g -o $@ -I src
20-
2114
string_funs_test.bin: test/string_funs_test.c src/string_funs.[ch]
2215
gcc $^ -g -o $@ -I src
2316

0 commit comments

Comments
 (0)