File: Makefile

package info (click to toggle)
tgt 1%3A1.0.85-1.3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,784 kB
  • sloc: ansic: 28,398; perl: 3,825; xml: 1,867; sh: 1,271; makefile: 301
file content (15 lines) | stat: -rw-r--r-- 228 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
sbindir ?= $(PREFIX)/sbin

SCRIPTS += tgt-setup-lun tgt-admin

.PHONY: all
all:

.PHONY: install
install: $(SCRIPTS)
	install -d -m 755 $(DESTDIR)$(sbindir)
	install -m 755 $(SCRIPTS) $(DESTDIR)$(sbindir)

.PHONY: clean
clean: