From 1051355aab819f576332af705bc28bbd738d3ccc Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Thu, 22 Jun 2017 20:24:05 -0400 Subject: [PATCH] Add a Makefile This will help with deployment to allow installing the package at a given DESTDIR. --- Makefile | 10 ++++++++++ configure | 3 +++ 2 files changed, 13 insertions(+) create mode 100644 Makefile create mode 100755 configure diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c626b11 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +DESTDIR := /tmp/retroarch-joypad-autoconfig + +all: + @echo "Nothing to make for retroarch-joypad-autoconfig." + +install: + mkdir -p $(DESTDIR) + cp -ar * $(DESTDIR) + rm $(DESTDIR)/Makefile + rm $(DESTDIR)/configure diff --git a/configure b/configure new file mode 100755 index 0000000..bca236e --- /dev/null +++ b/configure @@ -0,0 +1,3 @@ +#!/bin/sh + +PACKAGE_NAME=retroarch-joypad-autoconfig