summaryrefslogtreecommitdiffstats
path: root/_build/static/archives/extend/2013-August/000210.html
diff options
context:
space:
mode:
Diffstat (limited to '_build/static/archives/extend/2013-August/000210.html')
-rw-r--r--_build/static/archives/extend/2013-August/000210.html159
1 files changed, 159 insertions, 0 deletions
diff --git a/_build/static/archives/extend/2013-August/000210.html b/_build/static/archives/extend/2013-August/000210.html
new file mode 100644
index 00000000..adbce1a3
--- /dev/null
+++ b/_build/static/archives/extend/2013-August/000210.html
@@ -0,0 +1,159 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [99s-extend] [erlang-questions] [ANN] erlang.mk build tool
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:extend%40lists.ninenines.eu?Subject=Re%3A%20%5B99s-extend%5D%20%5Berlang-questions%5D%20%5BANN%5D%20erlang.mk%20build%20tool&In-Reply-To=%3C520E3890.5020000%40ninenines.eu%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <style type="text/css">
+ pre {
+ white-space: pre-wrap; /* css-2.1, curent FF, Opera, Safari */
+ }
+ </style>
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="000218.html">
+ <LINK REL="Next" HREF="000215.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[99s-extend] [erlang-questions] [ANN] erlang.mk build tool</H1>
+ <B>Lo&#239;c Hoguin</B>
+ <A HREF="mailto:extend%40lists.ninenines.eu?Subject=Re%3A%20%5B99s-extend%5D%20%5Berlang-questions%5D%20%5BANN%5D%20erlang.mk%20build%20tool&In-Reply-To=%3C520E3890.5020000%40ninenines.eu%3E"
+ TITLE="[99s-extend] [erlang-questions] [ANN] erlang.mk build tool">essen at ninenines.eu
+ </A><BR>
+ <I>Fri Aug 16 16:34:56 CEST 2013</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="000218.html">[99s-extend] [erlang-questions] [ANN] erlang.mk build tool
+</A></li>
+ <LI>Next message: <A HREF="000215.html">[99s-extend] [erlang-questions] [ANN] erlang.mk build tool
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#210">[ date ]</a>
+ <a href="thread.html#210">[ thread ]</a>
+ <a href="subject.html#210">[ subject ]</a>
+ <a href="author.html#210">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 08/16/2013 10:39 AM, Benoit Chesneau wrote:
+&gt;<i> The big problem with erlang.mk &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; is requiring to have
+</I>&gt;<i> gmake and more importantly wget installed imo.
+</I>
+wget is only used for fetching the package index file. I'm sure if it
+doesn't work somewhere it'll be patched eventually.
+
+&gt;<i> Which makes it quite annoying to distribute on systems that have none of
+</I>&gt;<i> them. It would be interrestin to have the support for curl for example.
+</I>&gt;<i> Also what are the makefile extensions that you really need to require gmake?
+</I>
+No idea. Patches are welcome for compatibility with different OS/build
+tools (as long as it's not &quot;rewrite the whole file&quot; of course, then
+you're better off just using gmake).
+
+&gt;<i> - benoit
+</I>&gt;<i>
+</I>&gt;<i>
+</I>&gt;<i> On Thu, Aug 15, 2013 at 4:19 PM, Lo&#239;c Hoguin &lt;<A HREF="https://lists.ninenines.eu/listinfo/extend">essen at ninenines.eu</A>
+</I>&gt;<i> &lt;mailto:<A HREF="https://lists.ninenines.eu/listinfo/extend">essen at ninenines.eu</A>&gt;&gt; wrote:
+</I>&gt;<i>
+</I>&gt;<i> Hello friendly people,
+</I>&gt;<i>
+</I>&gt;<i> I would like to make an official announcement of erlang.mk
+</I>&gt;<i> &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; now that all the features I wanted are in.
+</I>&gt;<i>
+</I>&gt;<i> erlang.mk &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; is a rebar replacement. It was
+</I>&gt;<i> initially created for allowing a faster development process than
+</I>&gt;<i> rebar and for better compatibility with Linux build tools. It should
+</I>&gt;<i> work on Linux and OSX with GNU Make installed.
+</I>&gt;<i>
+</I>&gt;<i> Projects using erlang.mk &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; are still compatible
+</I>&gt;<i> with rebar. Dependencies fetched by rebar are stored in the same
+</I>&gt;<i> deps/ directory, and projects using erlang.mk &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; can
+</I>&gt;<i> still be used as rebar dependencies, with or without a rebar.config
+</I>&gt;<i> file.
+</I>&gt;<i>
+</I>&gt;<i> erlang.mk &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; also features a simple package index.
+</I>&gt;<i> Try `make pkg-list` to list all packages currently available. All
+</I>&gt;<i> the packages listed are compatible with erlang.mk &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt;
+</I>&gt;<i> with no tweaking required.
+</I>&gt;<i>
+</I>&gt;<i> Makefiles written with erlang.mk &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; are *VERY*
+</I>&gt;<i> simple, here are two examples:
+</I>&gt;<i>
+</I>&gt;<i> * <A HREF="https://github.com/extend/__farwest/blob/master/Makefile">https://github.com/extend/__farwest/blob/master/Makefile</A>
+</I>&gt;<i> &lt;<A HREF="https://github.com/extend/farwest/blob/master/Makefile">https://github.com/extend/farwest/blob/master/Makefile</A>&gt;
+</I>&gt;<i> * <A HREF="https://github.com/extend/__cowboy/blob/master/Makefile">https://github.com/extend/__cowboy/blob/master/Makefile</A>
+</I>&gt;<i> &lt;<A HREF="https://github.com/extend/cowboy/blob/master/Makefile">https://github.com/extend/cowboy/blob/master/Makefile</A>&gt;
+</I>&gt;<i>
+</I>&gt;<i> I wrote about erlang.mk &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; and relx recently on the
+</I>&gt;<i> Nine Nines blog. erlang.mk &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; is the perfect
+</I>&gt;<i> companion to relx.
+</I>&gt;<i>
+</I>&gt;<i> * <A HREF="http://ninenines.eu/articles/__erlang.mk-and-relx">http://ninenines.eu/articles/__erlang.mk-and-relx</A>
+</I>&gt;<i> &lt;<A HREF="http://ninenines.eu/articles/erlang.mk-and-relx">http://ninenines.eu/articles/erlang.mk-and-relx</A>&gt;
+</I>&gt;<i>
+</I>&gt;<i> Here are examples of projects that are using and compatible with
+</I>&gt;<i> erlang.mk &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt;:
+</I>&gt;<i>
+</I>&gt;<i> * <A HREF="https://github.com/jlouis/__etorrent">https://github.com/jlouis/__etorrent</A>
+</I>&gt;<i> &lt;<A HREF="https://github.com/jlouis/etorrent">https://github.com/jlouis/etorrent</A>&gt;
+</I>&gt;<i> * <A HREF="https://github.com/extend/__cowboy">https://github.com/extend/__cowboy</A>
+</I>&gt;<i> &lt;<A HREF="https://github.com/extend/cowboy">https://github.com/extend/cowboy</A>&gt;
+</I>&gt;<i> * <A HREF="https://github.com/extend/__farwest">https://github.com/extend/__farwest</A>
+</I>&gt;<i> &lt;<A HREF="https://github.com/extend/farwest">https://github.com/extend/farwest</A>&gt;
+</I>&gt;<i>
+</I>&gt;<i> You can find erlang.mk &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; at the following URL:
+</I>&gt;<i>
+</I>&gt;<i> * <A HREF="https://github.com/extend/__erlang.mk">https://github.com/extend/__erlang.mk</A>
+</I>&gt;<i> &lt;<A HREF="https://github.com/extend/erlang.mk">https://github.com/extend/erlang.mk</A>&gt;
+</I>&gt;<i>
+</I>&gt;<i> Contributions to the package index are of course welcome! The only
+</I>&gt;<i> requirement is that the package is to be compatible with erlang.mk
+</I>&gt;<i> &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; itself. Just send a PR to the erlang.mk
+</I>&gt;<i> &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; project updating the packages.v1.txt!
+</I>&gt;<i>
+</I>&gt;<i> Enjoy!
+</I>&gt;<i>
+</I>&gt;<i> --
+</I>&gt;<i> Lo&#239;c Hoguin
+</I>&gt;<i> Erlang Cowboy
+</I>&gt;<i> Nine Nines
+</I>&gt;<i> <A HREF="http://ninenines.eu">http://ninenines.eu</A>
+</I>&gt;<i> _________________________________________________
+</I>&gt;<i> erlang-questions mailing list
+</I>&gt;<i> <A HREF="https://lists.ninenines.eu/listinfo/extend">erlang-questions at erlang.org</A> &lt;mailto:<A HREF="https://lists.ninenines.eu/listinfo/extend">erlang-questions at erlang.org</A>&gt;
+</I>&gt;<i> <A HREF="http://erlang.org/mailman/__listinfo/erlang-questions">http://erlang.org/mailman/__listinfo/erlang-questions</A>
+</I>&gt;<i> &lt;<A HREF="http://erlang.org/mailman/listinfo/erlang-questions">http://erlang.org/mailman/listinfo/erlang-questions</A>&gt;
+</I>&gt;<i>
+</I>&gt;<i>
+</I>
+
+--
+Lo&#239;c Hoguin
+Erlang Cowboy
+Nine Nines
+<A HREF="http://ninenines.eu">http://ninenines.eu</A>
+
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="000218.html">[99s-extend] [erlang-questions] [ANN] erlang.mk build tool
+</A></li>
+ <LI>Next message: <A HREF="000215.html">[99s-extend] [erlang-questions] [ANN] erlang.mk build tool
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#210">[ date ]</a>
+ <a href="thread.html#210">[ thread ]</a>
+ <a href="subject.html#210">[ subject ]</a>
+ <a href="author.html#210">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://lists.ninenines.eu/listinfo/extend">More information about the Extend
+mailing list</a><br>
+</body></html>