summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Ulrich Niedermann <hun@n-dimensional.de>2009-04-01 13:14:43 +0200
committerHans Ulrich Niedermann <hun@n-dimensional.de>2009-04-01 13:14:43 +0200
commita56d2569238911e14e7d397f15533e8bc9eba017 (patch)
tree824072aeaa1015ce03a42b629df82a85ae82df80
parentea5d389ee4f232ae940d918c71f572fbe8548c18 (diff)
downloadgit-rpm-a56d2569238911e14e7d397f15533e8bc9eba017.tar.gz
git-rpm-a56d2569238911e14e7d397f15533e8bc9eba017.tar.xz
git-rpm-a56d2569238911e14e7d397f15533e8bc9eba017.zip
Add GNUmakefile template file
-rw-r--r--GNUmakefile3
-rw-r--r--README6
2 files changed, 5 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile
new file mode 100644
index 0000000..3ca24ef
--- /dev/null
+++ b/GNUmakefile
@@ -0,0 +1,3 @@
+NAME = changeme
+dummy := $(shell test -f git-rpm/git-rpm.mk || git submodule update --init)
+include git-rpm/git-rpm.mk
diff --git a/README b/README
index 9496fd4..8233286 100644
--- a/README
+++ b/README
@@ -1,10 +1,8 @@
# How to use this file:
# 0. run "git init"
# 1. git submodule add 'git://fedorapeople.org/~ndim/git-rpm.git' git-rpm
-# 2. create GNUmakefile with contents like
-# NAME = mypkg
-# dummy := $(shell test -f git-rpm/git-rpm.mk || git submodule update --init)
-# include git-rpm/git-rpm.mk
+# 2. copy git-rpm/GNUmakefile to your top directory:
+# $ cp git-rpm/GNUmakefile .
# 3. write mypkg.spec, and fill in at least the Summary: line
# 4. run "make setup" to created the upload directory to the server
# 5. write mypkg.spec, patches, Source: files, etc.