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

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

install:
	mkdir -p $(DESTDIR)/usr/bin/
	cp rtv4d-dl $(DESTDIR)/usr/bin/

distclean:
	rm rtv4d-dl -f

clean:
	rm rtv4d-dl -f