mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-20 17:40:12 +00:00
14 lines
241 B
Makefile
14 lines
241 B
Makefile
SRCDIR ?= .
|
|
|
|
all:
|
|
gcc -g -Wall -pthread -o hd-rum $(SRCDIR)/hd-rum.c
|
|
|
|
install:
|
|
install -m 755 hd-rum /usr/local/bin
|
|
install -m 644 hd-rum.1 /usr/local/man/man1
|
|
|
|
uninstall:
|
|
$(RM) /usr/local/bin/hd-rum
|
|
$(RM) /usr/local/man/man1/hd-rum.1
|
|
|