summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 4d492c873f566eb70d544d233d2929573e2de18d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
DESTDIR=/usr/local/bin/

default:
	gcc rtv4d-dl.c -o rtv4d-dl -Wall -lm -I.

install:
	cp rtv4d-dl $(DESTDIR)

distclean:
	rm rtv4d-dl

clean:
	rm rtv4d-dl