FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
elf-parser/Makefile at master · TheCodeArtist/elf-parser · GitHub
TheCodeArtist
/
elf-parser
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
47
Star
161
Code
Issues
5
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
elf-parser
/
Makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
14 lines (10 loc) · 215 Bytes
Breadcrumbs
elf-parser
/
Makefile
Copy path
File metadata and controls
14 lines (10 loc) · 215 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
CC
=gcc
CFLAGS
= -Wall -g -I.
DEPS
= elf-parser.h
OBJ
= disasm.o elf-parser.o elf-parser-main.o
%
.o
:
%
.c
$(
DEPS
)
$(
CC
)
-c -o
$@
$<
$(
CFLAGS
)
elfparser
:
$(
OBJ
)
gcc -o
$@
$^
$(
CFLAGS
)
clean
:
rm -rf
*
.o elfparser
Back
|
FazBrowse Home
|
New Git URL