File: Makefile

package info (click to toggle)
webcamd 0.7.6-5
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, jessie, jessie-kfreebsd, lenny, squeeze, wheezy
  • size: 96 kB
  • ctags: 12
  • sloc: perl: 357; makefile: 59; sh: 21
file content (30 lines) | stat: -rw-r--r-- 483 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#
# webcamd - Webcam Daemon
#
# Makefile
#

DESTDIR=

INSTALL=install

BINDIR=$(DESTDIR)/usr/bin

all:

install:
	$(INSTALL) -d -m 755 $(BINDIR)
	$(INSTALL) -m 755 webcamd $(BINDIR)
	$(INSTALL) -m 755 webcamd-setup $(BINDIR)

userinstall:
	$(INSTALL) -d -m 700 $(HOME)/.webcamd
	$(INSTALL) -m 700 webcamd.conf $(HOME)/.webcamd
	$(INSTALL) -m 700 index_up.html $(HOME)/.webcamd
	$(INSTALL) -m 700 index_down.html $(HOME)/.webcamd

uninstall:
	rm -f $(BINDIR)/webcamd

clean:
	rm -f *~