diff options
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 ' ' |