aboutsummaryrefslogtreecommitdiff
blob: 6f12b2c67b5d0648ffefa6a80eb843b1e51afd37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
SHELL = /bin/bash

MYDIR = $(DESTDIR)/usr/sbin
SUBDIRS =
BINS = vdrplugin-rebuild
CONFS =

all: compile

compile: $(BINS)

clean:
	rm $(BINS)

install: $(BINS)
	@install -m 0755 -o root -g root -d $(MYDIR)
	@install -m 0755 -o root -g root $(BINS) $(MYDIR)
	#install -m 0644 -o root -g root $(CONFS) $(MYDIR)
	@for DIR in $(SUBDIRS); do \
		$(MAKE) -C $$DIR install; \
	done

.PHONY: all install