File: Makefile

package info (click to toggle)
hw-probe 1.6.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,376 kB
  • sloc: perl: 16,167; xml: 133; makefile: 28; sh: 10
file content (18 lines) | stat: -rw-r--r-- 266 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
prefix ?= /usr
tool = hw-probe
tool_dir = $(DESTDIR)$(prefix)/bin

.PHONY: all

all:
	echo "Nothing to build."

install:
	mkdir -p $(tool_dir)
	install -m 755 $(tool).pl $(tool_dir)/$(tool)

uninstall:
	rm -f $(tool_dir)/$(tool)

clean:
	echo "Nothing to clean up."