aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2019-10-14 08:08:25 +0200
committerToni Uhlig <matzeton@googlemail.com>2019-10-14 08:08:25 +0200
commit1b1c7bfbb3bdfda23602dea887b6462a17715791 (patch)
treeebe400742b85200f53ad19dd38c83c3f47f059b4 /Makefile
parent2e13536e0ba210f82ac24def1038ff73c5058b7b (diff)
parentec3f5d405ed8feacdfb86c10f9be3b91d010f0a4 (diff)
Merge branch 'master' of ssh://git.lan:/git/tools
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 12 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 425b765..080e814 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 scrambler progressbar
+TARGETS := aes asciihexer dummyshell suidcmd ascii85 textify progressbar
ifneq ($(strip $(MAKE_NCURSES)),)
TARGETS += gol
@@ -35,7 +35,14 @@ 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
+ @echo 'Finished building target: $@'
+ @echo ' '
+
+textify: textify.o
@echo 'Building target: $@'
@echo 'Invoking: GCC C Linker'
$(CC) $(LDFLAGS) -o "$@" "$<" -lm
@@ -74,9 +81,9 @@ strip:
strip -s $(TARGETS)
clean:
- -$(RM) aes.o asciihexer.o dummyshell.o gol.o suidcmd.o scrambler.o xidle.o xdiff.o
- -$(RM) aes.d asciihexer.d dummyshell.d gol.d suidcmd.d scrambler.d xidle.d xdiff.d
- -$(RM) aes asciihexer dummyshell gol suidcmd scrambler xidle xdiff
+ -$(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 ' '
install: $(TARGETS)