pelf 0.1.4

A library for parsing/generating/analyzing ELF
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY: all
all: format test clippy

.PHONY: format 
format:
	cargo fmt

.PHONY: test 
test:
	cargo test

.PHONY: clippy 
clippy:
	cargo clippy