diff options
author | lns <matzeton@googlemail.com> | 2019-10-14 00:59:30 +0200 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2019-10-14 00:59:30 +0200 |
commit | ec3f5d405ed8feacdfb86c10f9be3b91d010f0a4 (patch) | |
tree | 6fc1227585d8317ceb51976b2f43122521d63d1e | |
parent | cc277f3e182c33fdd0a991d8e83048cc9d47fdef (diff) |
renamed scrambler -> ascii85
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | ascii85.c (renamed from scrambler.c) | 0 |
2 files changed, 3 insertions, 3 deletions
@@ -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 ' ' |