diff options
author | Loïc Hoguin <[email protected]> | 2016-08-29 12:39:49 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2016-08-29 12:40:03 +0200 |
commit | c807880f7ac73f813b2660ea81a00f7712a4e793 (patch) | |
tree | ba1d09e9b177f230665a80513b33fbd532000ce4 /archives/extend/2013-August/000213.html | |
parent | b1df25a7d9cda697513650659b781b55b40898f8 (diff) | |
download | ninenines.eu-c807880f7ac73f813b2660ea81a00f7712a4e793.tar.gz ninenines.eu-c807880f7ac73f813b2660ea81a00f7712a4e793.tar.bz2 ninenines.eu-c807880f7ac73f813b2660ea81a00f7712a4e793.zip |
Add old mailing list archives
Diffstat (limited to 'archives/extend/2013-August/000213.html')
-rw-r--r-- | archives/extend/2013-August/000213.html | 150 |
1 files changed, 150 insertions, 0 deletions
diff --git a/archives/extend/2013-August/000213.html b/archives/extend/2013-August/000213.html new file mode 100644 index 00000000..4e077be1 --- /dev/null +++ b/archives/extend/2013-August/000213.html @@ -0,0 +1,150 @@ +<!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=%3CCAE9na_MBpyKA1K0wVTf_NA58UNkohOmGQRSx6cy%2Bq8ds0kjtGQ%40mail.gmail.com%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="000212.html"> + <LINK REL="Next" HREF="000214.html"> + </HEAD> + <BODY BGCOLOR="#ffffff"> + <H1>[99s-extend] [erlang-questions] [ANN] erlang.mk build tool</H1> + <B>Vladimir Dronnikov</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=%3CCAE9na_MBpyKA1K0wVTf_NA58UNkohOmGQRSx6cy%2Bq8ds0kjtGQ%40mail.gmail.com%3E" + TITLE="[99s-extend] [erlang-questions] [ANN] erlang.mk build tool">dronnikov at gmail.com + </A><BR> + <I>Fri Aug 16 13:25:20 CEST 2013</I> + <P><UL> + <LI>Previous message: <A HREF="000212.html">[99s-extend] [erlang-questions] [ANN] erlang.mk build tool +</A></li> + <LI>Next message: <A HREF="000214.html">[99s-extend] [erlang-questions] [ANN] erlang.mk build tool +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#213">[ date ]</a> + <a href="thread.html#213">[ thread ]</a> + <a href="subject.html#213">[ subject ]</a> + <a href="author.html#213">[ author ]</a> + </LI> + </UL> + <HR> +<!--beginarticle--> +<PRE>I believe +curl -L $(PKG_FILE_URL) >$(PKG_FILE) +is kinda drop-in replacement for +wget -O $(PKG_FILE) $(PKG_FILE_URL) +used in erlang.mk. + +Should be tested + + +On Fri, Aug 16, 2013 at 12:39 PM, Benoit Chesneau <<A HREF="https://lists.ninenines.eu/listinfo/extend">bchesneau at gmail.com</A>>wrote: + +><i> The big problem with erlang.mk is requiring to have gmake and more +</I>><i> importantly wget installed imo. +</I>><i> +</I>><i> Which makes it quite annoying to distribute on systems that have none of +</I>><i> them. It would be interrestin to have the support for curl for example. +</I>><i> Also what are the makefile extensions that you really need to require gmake? +</I>><i> +</I>><i> - benoit +</I>><i> +</I>><i> +</I>><i> On Thu, Aug 15, 2013 at 4:19 PM, Loïc Hoguin <<A HREF="https://lists.ninenines.eu/listinfo/extend">essen at ninenines.eu</A>> wrote: +</I>><i> +</I>>><i> Hello friendly people, +</I>>><i> +</I>>><i> I would like to make an official announcement of erlang.mk now that all +</I>>><i> the features I wanted are in. +</I>>><i> +</I>>><i> erlang.mk is a rebar replacement. It was initially created for allowing +</I>>><i> a faster development process than rebar and for better compatibility with +</I>>><i> Linux build tools. It should work on Linux and OSX with GNU Make installed. +</I>>><i> +</I>>><i> Projects using erlang.mk are still compatible with rebar. Dependencies +</I>>><i> fetched by rebar are stored in the same deps/ directory, and projects using +</I>>><i> erlang.mk can still be used as rebar dependencies, with or without a +</I>>><i> rebar.config file. +</I>>><i> +</I>>><i> erlang.mk also features a simple package index. Try `make pkg-list` to +</I>>><i> list all packages currently available. All the packages listed are +</I>>><i> compatible with erlang.mk with no tweaking required. +</I>>><i> +</I>>><i> Makefiles written with erlang.mk are *VERY* simple, here are two +</I>>><i> examples: +</I>>><i> +</I>>><i> * <A HREF="https://github.com/extend/**farwest/blob/master/Makefile<https://github.com/extend/farwest/blob/master/Makefile">https://github.com/extend/**farwest/blob/master/Makefile<https://github.com/extend/farwest/blob/master/Makefile</A>> +</I>>><i> * <A HREF="https://github.com/extend/**cowboy/blob/master/Makefile<https://github.com/extend/cowboy/blob/master/Makefile">https://github.com/extend/**cowboy/blob/master/Makefile<https://github.com/extend/cowboy/blob/master/Makefile</A>> +</I>>><i> +</I>>><i> I wrote about erlang.mk and relx recently on the Nine Nines blog. +</I>>><i> erlang.mk is the perfect companion to relx. +</I>>><i> +</I>>><i> * <A HREF="http://ninenines.eu/articles/**erlang.mk-and-relx<http://ninenines.eu/articles/erlang.mk-and-relx">http://ninenines.eu/articles/**erlang.mk-and-relx<http://ninenines.eu/articles/erlang.mk-and-relx</A>> +</I>>><i> +</I>>><i> Here are examples of projects that are using and compatible with +</I>>><i> erlang.mk: +</I>>><i> +</I>>><i> * <A HREF="https://github.com/jlouis/**etorrent<https://github.com/jlouis/etorrent">https://github.com/jlouis/**etorrent<https://github.com/jlouis/etorrent</A>> +</I>>><i> * <A HREF="https://github.com/extend/**cowboy">https://github.com/extend/**cowboy</A> <<A HREF="https://github.com/extend/cowboy">https://github.com/extend/cowboy</A>> +</I>>><i> * <A HREF="https://github.com/extend/**farwest<https://github.com/extend/farwest">https://github.com/extend/**farwest<https://github.com/extend/farwest</A>> +</I>>><i> +</I>>><i> You can find erlang.mk at the following URL: +</I>>><i> +</I>>><i> * <A HREF="https://github.com/extend/**erlang.mk<https://github.com/extend/erlang.mk">https://github.com/extend/**erlang.mk<https://github.com/extend/erlang.mk</A>> +</I>>><i> +</I>>><i> Contributions to the package index are of course welcome! The only +</I>>><i> requirement is that the package is to be compatible with erlang.mkitself. Just send a PR to the +</I>>><i> erlang.mk project updating the packages.v1.txt! +</I>>><i> +</I>>><i> Enjoy! +</I>>><i> +</I>>><i> -- +</I>>><i> Loïc Hoguin +</I>>><i> Erlang Cowboy +</I>>><i> Nine Nines +</I>>><i> <A HREF="http://ninenines.eu">http://ninenines.eu</A> +</I>>><i> ______________________________**_________________ +</I>>><i> erlang-questions mailing list +</I>>><i> <A HREF="https://lists.ninenines.eu/listinfo/extend">erlang-questions at erlang.org</A> +</I>>><i> <A HREF="http://erlang.org/mailman/**listinfo/erlang-questions<http://erlang.org/mailman/listinfo/erlang-questions">http://erlang.org/mailman/**listinfo/erlang-questions<http://erlang.org/mailman/listinfo/erlang-questions</A>> +</I>>><i> +</I>><i> +</I>><i> +</I>><i> _______________________________________________ +</I>><i> erlang-questions mailing list +</I>><i> <A HREF="https://lists.ninenines.eu/listinfo/extend">erlang-questions at erlang.org</A> +</I>><i> <A HREF="http://erlang.org/mailman/listinfo/erlang-questions">http://erlang.org/mailman/listinfo/erlang-questions</A> +</I>><i> +</I>><i> +</I>-------------- next part -------------- +An HTML attachment was scrubbed... +URL: <<A HREF="http://lists.ninenines.eu/archives/extend/attachments/20130816/8f4a69b4/attachment.html">http://lists.ninenines.eu/archives/extend/attachments/20130816/8f4a69b4/attachment.html</A>> +</PRE> + +<!--endarticle--> + <HR> + <P><UL> + <!--threads--> + <LI>Previous message: <A HREF="000212.html">[99s-extend] [erlang-questions] [ANN] erlang.mk build tool +</A></li> + <LI>Next message: <A HREF="000214.html">[99s-extend] [erlang-questions] [ANN] erlang.mk build tool +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#213">[ date ]</a> + <a href="thread.html#213">[ thread ]</a> + <a href="subject.html#213">[ subject ]</a> + <a href="author.html#213">[ author ]</a> + </LI> + </UL> + +<hr> +<a href="https://lists.ninenines.eu/listinfo/extend">More information about the Extend +mailing list</a><br> +</body></html> |