File: Makefile

package info (click to toggle)
autopkgtest 5.53
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,600 kB
  • sloc: python: 15,484; sh: 2,317; makefile: 116; perl: 19
file content (13 lines) | stat: -rw-r--r-- 354 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
build:
	/bin/echo -e "#!/bin/sh -e\necho built script OK" > test_built
	/bin/echo -e "#!/bin/sh -e\nexec $(PWD)/test_built" > test_abspath
	chmod 755 test_built test_abspath

clean:
	rm -f test_built

distclean: clean

install: build
	install -D -m755 test_static $(DESTDIR)/usr/bin/test_static
	install -D -m755 test_built $(DESTDIR)/usr/bin/test_built