File: Makefile

package info (click to toggle)
debmake 3.8.3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 312 kB
  • ctags: 15
  • sloc: sh: 753; makefile: 155
file content (19 lines) | stat: -rw-r--r-- 548 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# This makefile is really small. Most of the
# intelligence is in debian/debstd

all:

clean:

install:
	install -d $(DESTDIR)/usr/bin
	install -d $(DESTDIR)/usr/share/debmake
	install -d $(DESTDIR)/usr/share/man/man1
	install -p debstd checkbash $(DESTDIR)/usr/bin
	install -m 644 debstd.1 checkbash.1 $(DESTDIR)/usr/share/man/man1
	cp -a lib/*  $(DESTDIR)/usr/share/debmake
ifneq ($(DEPRECATED),yes)
	install -p deb-make $(DESTDIR)/usr/bin
	install -m 644 deb-make.1 $(DESTDIR)/usr/share/man/man1
	cp -a skel/* $(DESTDIR)/usr/share/debmake
endif