git.y1.nz

digest-html

Converts HTML to plaintext-with-links.
download: http://git.y1.nz/archives/digest-html.tar.gz
README | Files | Log | Refs

Makefile

      1 include config.mk
      2 
      3 all: digest-html
      4 
      5 digest-html: main.c translate.o
      6 	$(CC) main.c translate.o -lokra -lgumbo -o digest-html
      7 
      8 translate.o: translate.c translate.h
      9 	$(CC) -c translate.c -o translate.o
     10 
     11 install: digest-html
     12 	cp -f digest-html $(PREFIX)/bin
     13 	mkdir -p $(MANPREFIX)/man1
     14 	cp -f digest-html.1 $(MANPREFIX)/man1
     15 
     16 clean:
     17 	rm -f digest-html *.o

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.