2020-12-14 19:56:17 -05:00
|
|
|
# Copyright (c) 2020 Michael Small <smallm@sdf.org>
|
|
|
|
#
|
|
|
|
# Copying and distribution of this file, with or without modification,
|
|
|
|
# are permitted in any medium without royalty, provided the copyright
|
|
|
|
# notice and this notice are preserved. This file is offered as-is,
|
|
|
|
# without any warranty.
|
|
|
|
|
|
|
|
PREFIX=/usr/local
|
|
|
|
BINDIR=$(PREFIX)/bin
|
|
|
|
MANDIR=$(PREFIX)/share/man
|
|
|
|
|
|
|
|
all: ansi2text
|
|
|
|
|
|
|
|
ansi2text: ansi2text.o
|
2020-12-15 20:22:30 -05:00
|
|
|
$(CC) -o $@ $>
|
2020-12-14 19:56:17 -05:00
|
|
|
|
|
|
|
install: ansi2text
|
|
|
|
install -d $(BINDIR) $(MANDIR) $(MANDIR)/man1
|
2020-12-15 20:22:30 -05:00
|
|
|
install -m 755 ansi2text $(BINDIR)
|
|
|
|
install -m 444 ansi2text.1 $(MANDIR)/man1
|
2020-12-14 19:56:17 -05:00
|
|
|
|
2020-12-14 20:02:29 -05:00
|
|
|
clean:
|
|
|
|
-rm ansi2text ansi2text.o
|
2020-12-15 20:22:30 -05:00
|
|
|
|
|
|
|
uninstall:
|
|
|
|
-rm $(BINDIR)/ansi2text
|
|
|
|
-rm $(MANDIR)/man1/ansi2text.1
|