aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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