Commit 3df65446 authored by Rémi Duraffort's avatar Rémi Duraffort Committed by Christophe Massiot

Add a Makefile to install/uninstalll everything.

parent 0403c639
PREFIX ?= /usr/local
INCLUDE = $(PREFIX)/include/bitstream
install:
@install -d $(INCLUDE)
@install -m 644 common.h $(INCLUDE)/
@install -d $(INCLUDE)/dvb
@install -m 644 dvb/* $(INCLUDE)/dvb
@install -d $(INCLUDE)/ietf
@install -m 644 ietf/* $(INCLUDE)/ietf
@install -d $(INCLUDE)/mpeg
@install -m 644 mpeg/* $(INCLUDE)/mpeg
uninstall:
@rm -rf $(INCLUDE)
.PHONY: install uninstall
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment