dlugolecki.net.pl
Dziennik
Polecane
Software
projects
/
gedcom-parse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d3d4caa
)
Give a warning if make is not GNU make.
author
Peter Verthez
<Peter.Verthez@advalvas.be>
Sun, 13 Oct 2002 16:31:30 +0000
(16:31 +0000)
committer
Peter Verthez
<Peter.Verthez@advalvas.be>
Sun, 13 Oct 2002 16:31:30 +0000
(16:31 +0000)
Makefile
[new file with mode: 0644]
patch
|
blob
diff --git a/Makefile
b/Makefile
new file mode 100644
(file)
index 0000000..
46e7b69
--- /dev/null
+++ b/
Makefile
@@ -0,0
+1,11
@@
+# $Id$
+# $Name$
+all:
+ @if test -r GNUmakefile; then \
+ echo Sorry, GNU make is required; \
+ case `gmake --version 2>/dev/null` in \
+ *GNU*) echo Try again with 'gmake' ;; \
+ esac; \
+ else \
+ echo Please run ./configure first; \
+ fi