summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore4
-rw-r--r--Makefile13
2 files changed, 17 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..d29f17db34a3
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+pkg/
+src/
+thunderbolt-software-user-space
+thunderbolt-software-user-space-*-x86_64.pkg.tar.xz
diff --git a/Makefile b/Makefile
new file mode 100644
index 000000000000..3f4b3ba8fbed
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,13 @@
+package: .SRCINFO
+ makepkg
+
+.SRCINFO:
+ makepkg --printsrcinfo > .SRCINFO
+
+clean:
+ rm -rf pkg
+ rm -rf src
+ rm -rf thunderbolt-software-user-space
+ rm thunderbolt-software-user-space-*-x86_64.pkg.tar.xz
+
+.PHONY: .SRCINFO