mirror of
https://github.com/dirtbags/fluffy.git
synced 2025-01-08 04:50:59 -07:00
b56f6dfb70
- renamed man pages * Added additional functionality to xor. This tool will be installed with several names to change its core action, while retaining its overall functionality. Currently, the following actions have been included: - xor - rot (bitwise rotate) - rol (bytewise rotate) - caesar (Caesar's cipher) * Added a summary man page (netre-tools.mdoc). This man page will be a sort of menu for users to find all of the tools included in the toolkit. Suggested by cashmoney. * Added additional code in Makefile.am to detect GCC and to handle debug
10 lines
156 B
Bash
Executable file
10 lines
156 B
Bash
Executable file
#!/bin/sh -e
|
|
|
|
mkdir -p m4
|
|
|
|
autoreconf --install --force
|
|
rm -rf autom4te.cache
|
|
|
|
if [ -z "$1" ]; then
|
|
./configure --enable-maintainer-mode --enable-debug
|
|
fi
|