mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-21 22:40:30 +00:00
12 lines
218 B
Makefile
12 lines
218 B
Makefile
all:
|
|
gcc -g -Wall -pthread -o hd-rum 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
|
|
|