git.y1.nz

bro

URI-based multiplexer
download: http://git.y1.nz/archives/bro.tar.gz
README | Files | Log | Refs

Makefile

      1 include config.mk
      2 
      3 all: bro
      4 
      5 bro: main.c config.h
      6 	$(CC) main.c -lokra -o bro
      7 
      8 install: bro
      9 	cp -f bro $(PREFIX)/bin
     10 	echo "man page too"
     11 
     12 uninstall:
     13 	rm -f $(PREFIX)/bin/bro
     14 
     15 clean:
     16 	rm -f bro

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