summaryrefslogtreecommitdiff
path: root/integration-tests/dpkg-build-test/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'integration-tests/dpkg-build-test/src/Makefile')
-rw-r--r--integration-tests/dpkg-build-test/src/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/integration-tests/dpkg-build-test/src/Makefile b/integration-tests/dpkg-build-test/src/Makefile
new file mode 100644
index 000000000..a14e4a7a7
--- /dev/null
+++ b/integration-tests/dpkg-build-test/src/Makefile
@@ -0,0 +1,9 @@
+
+build:
+ $(shell touch foo)
+
+install: build
+ install -d $(DESTDIR)/usr/share
+ install -m 0644 foo $(DESTDIR)/usr/share/foo
+
+all: build install