git.y1.nz

rvis

Minimal terminal colorizer.
download: https://git.y1.nz/archives/rvis.tar.gz
README | Files | Log | Refs

Makefile

      1 #include "config.mk"
      2 
      3 all: rvis
      4 
      5 rvis: main.c term.o vt.o config.h
      6 	$(CC) main.c term.o vt.o -o rvis
      7 
      8 vt.o: vt.c vt.h
      9 	$(CC) -c vt.c -o vt.o
     10 
     11 term.o: term.c term.h
     12 	$(CC) -c term.c -o term.o
     13 
     14 clean:
     15 	rm -f rvis term.o vt.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.