Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
binwalk
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-gitdep
binwalk
Commits
3af5636c
Commit
3af5636c
authored
Jul 15, 2014
by
devttys0
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated configure/makefiles, INSTALL
parent
51604ea8
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
13 deletions
+10
-13
INSTALL
INSTALL
+2
-2
configure
configure
+2
-2
configure.ac
configure.ac
+2
-2
setup.py
setup.py
+0
-1
Makefile
src/C/compress/Makefile
+2
-3
Makefile
src/C/miniz/Makefile
+2
-3
No files found.
INSTALL
View file @
3af5636c
...
...
@@ -14,8 +14,8 @@ names and installation procedures may differ slightly.
INSTALLATION
-----------------------------------------
Installation follows the typical configure/make process (
python, gcc, libtool and autoconf
must be installed in order to build):
Installation follows the typical configure/make process (
standard development tools
such as gcc, make, and Python
must be installed in order to build):
$ ./configure
$ make
...
...
configure
View file @
3af5636c
...
...
@@ -3353,14 +3353,14 @@ then
then
rm
-rf
$(
ls
./src/C/file-
*
.tar.gz | sed
-e
's/\.tar\.gz//'
)
(
cd
./src/C
&&
tar
-zxvf
file-
*
.tar.gz
>
/dev/null
)
(
cd
./src/C/file-
*
/
&&
autoreconf
-v
&&
./configure
)
||
exit
1
(
cd
./src/C/file-
*
/
&&
./configure
)
||
exit
1
fi
if
test
"
$BUILD_FUZZY
"
!=
"0"
then
rm
-rf
$(
ls
./src/C/ssdeep-
*
.tar.gz | sed
-e
's/\.tar\.gz//'
)
(
cd
./src/C
&&
tar
-zxvf
ssdeep-
*
.tar.gz
>
/dev/null
)
(
cd
./src/C/ssdeep-
*
/
&&
mkdir
-p
m4
&&
autoreconf
-v
&&
./configure
)
||
exit
1
(
cd
./src/C/ssdeep-
*
/
&&
./configure
)
||
exit
1
fi
fi
...
...
configure.ac
View file @
3af5636c
...
...
@@ -50,14 +50,14 @@ then
then
rm -rf $(ls ./src/C/file-*.tar.gz | sed -e 's/\.tar\.gz//')
(cd ./src/C && tar -zxvf file-*.tar.gz > /dev/null)
(cd ./src/C/file-*/ &&
autoreconf -v &&
./configure) || exit 1
(cd ./src/C/file-*/ && ./configure) || exit 1
fi
if test "$BUILD_FUZZY" != "0"
then
rm -rf $(ls ./src/C/ssdeep-*.tar.gz | sed -e 's/\.tar\.gz//')
(cd ./src/C && tar -zxvf ssdeep-*.tar.gz > /dev/null)
(cd ./src/C/ssdeep-*/ &&
mkdir -p m4 && autoreconf -v &&
./configure) || exit 1
(cd ./src/C/ssdeep-*/ && ./configure) || exit 1
fi
fi
...
...
setup.py
View file @
3af5636c
...
...
@@ -144,7 +144,6 @@ for (root, dirs, files) in os.walk(os.path.join(MODULE_NAME, "libs", "pyqtgraph"
for
directory
in
dirs
:
install_data_files
.
append
(
os
.
path
.
join
(
os
.
path
.
sep
.
join
(
root
.
split
(
os
.
path
.
sep
)[
1
:]),
os
.
path
.
join
(
directory
,
"*.py"
)))
print
(
install_data_files
)
# Install the module, script, and support files
setup
(
name
=
MODULE_NAME
,
version
=
"2.0.0"
,
...
...
src/C/compress/Makefile
View file @
3af5636c
LIBNAME
=
libcompress42.
$(SOEXT)
all
:
clean
$(LIBNAME)
all
:
$(LIBNAME)
$(LIBNAME)
:
compress42.o
$(CC)
$(CFLAGS)
-shared
-Wl
,
$(SONAME)
,
$(LIBNAME)
compress42.o
-o
$(LIBNAME)
$(LDFLAGS)
...
...
@@ -19,7 +19,6 @@ uninstall:
.PHONY
:
clean distclean
clean
:
rm
-f
*
.o
rm
-f
*
.o
$(LIBNAME)
distclean
:
clean
rm
-f
$(LIBNAME)
src/C/miniz/Makefile
View file @
3af5636c
LIBNAME
=
libtinfl.
$(SOEXT)
all
:
clean
$(LIBNAME)
all
:
$(LIBNAME)
$(LIBNAME)
:
tinfl.o
$(CC)
$(CFLAGS)
-shared
-Wl
,
$(SONAME)
,
$(LIBNAME)
tinfl.o
-o
$(LIBNAME)
$(LDFLAGS)
...
...
@@ -19,7 +19,6 @@ uninstall:
.PHONY
:
clean distclean
clean
:
rm
-f
*
.o
rm
-f
*
.o
$(LIBNAME)
distclean
:
clean
rm
-f
$(LIBNAME)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment