digest-gopher | Converts gopher to plaintext-with-links. |
| download: http://git.y1.nz/archives/digest-gopher.tar.gz | |
| README | Files | Log | Refs |
Makefile
1 include config.mk
2
3 all: digest-gopher
4
5 digest-gopher: main.c
6 $(CC) main.c -o digest-gopher
7
8 install: digest-gopher
9 cp -f digest-gopher $(PREFIX)/bin
10 mkdir -p $(MANPREFIX)/man1
11 cp -f digest-gopher.1 $(MANPREFIX)/man1
12
13 clean:
14 rm -f digest-gopher
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.