diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-10-14 08:08:25 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2019-10-14 08:08:25 +0200 |
commit | 1b1c7bfbb3bdfda23602dea887b6462a17715791 (patch) | |
tree | ebe400742b85200f53ad19dd38c83c3f47f059b4 /Makefile | |
parent | 2e13536e0ba210f82ac24def1038ff73c5058b7b (diff) | |
parent | ec3f5d405ed8feacdfb86c10f9be3b91d010f0a4 (diff) |
Merge branch 'master' of ssh://git.lan:/git/tools
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
1 files changed, 12 insertions, 5 deletions
@@ -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) |