aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2019-11-11 20:22:09 +0100
committerToni Uhlig <matzeton@googlemail.com>2019-11-11 20:22:09 +0100
commitdb6dd292499cb8f824d951c3734e305e0cc4470d (patch)
tree417a0fe296882559a2f3d42b1a543ae6d967246c /Makefile
parent8ba7ce41445ba1cf8173152dee162411e98f3960 (diff)
removed obsolete textify tool
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 4 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index ce4d66a..c13c337 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ CFLAGS := -O2 -g -Wall -ffunction-sections -fdata-sections -ffast-math -fomit-fr
LDFLAGS :=
RM := rm -rf
-TARGETS := aes asciihexer dummyshell suidcmd ascii85 textify progressbar
+TARGETS := aes asciihexer dummyshell suidcmd ascii85 progressbar
ifneq ($(strip $(MAKE_NCURSES)),)
TARGETS += gol
@@ -42,13 +42,6 @@ ascii85: ascii85.o
@echo 'Finished building target: $@'
@echo ' '
-textify: textify.o
- @echo 'Building target: $@'
- @echo 'Invoking: GCC C Linker'
- $(CC) $(LDFLAGS) -o "$@" "$<" -lm
- @echo 'Finished building target: $@'
- @echo ' '
-
gol: gol.o
@echo 'Building target: $@'
@echo 'Invoking: GCC C Linker'
@@ -81,9 +74,9 @@ strip:
strip -s $(TARGETS)
clean:
- -$(RM) aes.o asciihexer.o dummyshell.o gol.o suidcmd.o ascii85.o textify.o progressbar.o xidle.o xdiff.o
- -$(RM) aes.d asciihexer.d dummyshell.d gol.d suidcmd.d scrambler.d textify.d progressbar.d xidle.d xdiff.d
- -$(RM) aes asciihexer dummyshell gol suidcmd scrambler textify progressbar xidle xdiff
+ -$(RM) aes.o asciihexer.o dummyshell.o gol.o suidcmd.o ascii85.o progressbar.o xidle.o xdiff.o
+ -$(RM) aes.d asciihexer.d dummyshell.d gol.d suidcmd.d scrambler.d progressbar.d xidle.d xdiff.d
+ -$(RM) aes asciihexer dummyshell gol suidcmd scrambler progressbar xidle xdiff
-@echo ' '
install: $(TARGETS)