aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlns <matzeton@googlemail.com>2019-10-14 00:59:30 +0200
committerlns <matzeton@googlemail.com>2019-10-14 00:59:30 +0200
commitec3f5d405ed8feacdfb86c10f9be3b91d010f0a4 (patch)
tree6fc1227585d8317ceb51976b2f43122521d63d1e
parentcc277f3e182c33fdd0a991d8e83048cc9d47fdef (diff)
renamed scrambler -> ascii85
-rw-r--r--Makefile6
-rw-r--r--ascii85.c (renamed from scrambler.c)0
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 09d3128..b5c3d6a 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ CFLAGS := -O2 -g -Wall -ffunction-sections -fdata-sections -ffast-math -fomit-fr
LDFLAGS :=
RM := rm -rf
-TARGETS := aes asciihexer dummyshell suidcmd scrambler textify progressbar
+TARGETS := aes asciihexer dummyshell suidcmd ascii85 textify progressbar
ifneq ($(strip $(MAKE_NCURSES)),)
TARGETS += gol
@@ -34,7 +34,7 @@ suidcmd: suidcmd.o
@echo 'Finished building target: $@'
@echo ' '
-scrambler: scrambler.o
+ascii85: ascii85.o
@echo 'Building target: $@'
@echo 'Invoking: GCC C Linker'
$(CC) $(LDFLAGS) -o "$@" "$<" -lm
@@ -80,7 +80,7 @@ strip:
strip -s $(TARGETS)
clean:
- -$(RM) aes.o asciihexer.o dummyshell.o gol.o suidcmd.o scrambler.o textify.o xidle.o xdiff.o
+ -$(RM) aes.o asciihexer.o dummyshell.o gol.o suidcmd.o ascii85.o textify.o xidle.o xdiff.o
-$(RM) aes.d asciihexer.d dummyshell.d gol.d suidcmd.d scrambler.d textify.d xidle.d xdiff.d
-$(RM) aes asciihexer dummyshell gol suidcmd scrambler textify xidle xdiff
-@echo ' '
diff --git a/scrambler.c b/ascii85.c
index 340a34a..340a34a 100644
--- a/scrambler.c
+++ b/ascii85.c