File: Makefile.randomuselesscrap

package info (click to toggle)
buthead 1.0-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 44 kB
  • ctags: 2
  • sloc: makefile: 35; ansic: 29
file content (20 lines) | stat: -rw-r--r-- 418 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
clean:
	-rm -f buthead

prefix=/usr/local
exec_prefix=$(prefix)
bindir=$(exec_prefix)/bin

INSTALL = install
INSTALL_PROGRAM = $(INSTALL) --mode a+rx,ug+w
INSTALL_DIR = mkdir --parent

install:: buthead
	$(INSTALL_DIR) $(DESTDIR)$(bindir)
	$(INSTALL_PROGRAM) buthead $(DESTDIR)$(bindir)

uninstall::
	-cd $(DESTDIR)$(bindir); rm -f buthead

install-strip:
	$(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) --strip' install