Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Does Emakefile support ASN.1 files?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  6 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Maxim Treskin  
View profile  
 More options Feb 12 2009, 11:27 pm
From: Maxim Treskin <zerth...@gmail.com>
Date: Fri, 13 Feb 2009 10:27:27 +0600
Local: Thurs, Feb 12 2009 11:27 pm
Subject: [erlang-questions] Does Emakefile support ASN.1 files?

Hello

I have Emakefile which contains one line:

{"*.asn", [{outdir, "."}]}.

So, when I type "erl -make", there is nothing done.
It seems that erlang make does not support ASN.1 compilation.

--
Maxim Treskin

_______________________________________________
erlang-questions mailing list
erlang-questi...@erlang.org
http://www.erlang.org/mailman/listinfo/erlang-questions


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bengt Kleberg  
View profile  
 More options Feb 13 2009, 2:45 am
From: Bengt Kleberg <bengt.kleb...@ericsson.com>
Date: Fri, 13 Feb 2009 08:45:47 +0100
Local: Fri, Feb 13 2009 2:45 am
Subject: Re: [erlang-questions] Does Emakefile support ASN.1 files?
Greetings,

Can you change the Emakefile to have your target first in the tuple?

I have not worked with ASN1, but from what I know of Emakefiles the
first entry in the tuple should be the target (module). According to the
compile documentation ASN1 files are the source for targets, not
targets.

bengt

_______________________________________________
erlang-questions mailing list
erlang-questi...@erlang.org
http://www.erlang.org/mailman/listinfo/erlang-questions

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Maxim Treskin  
View profile  
 More options Feb 13 2009, 2:57 am
From: Maxim Treskin <zerth...@gmail.com>
Date: Fri, 13 Feb 2009 13:57:41 +0600
Local: Fri, Feb 13 2009 2:57 am
Subject: Re: [erlang-questions] Does Emakefile support ASN.1 files?

2009/2/13 Bengt Kleberg <bengt.kleb...@ericsson.com>

> Greetings,

> Can you change the Emakefile to have your target first in the tuple?

> I have not worked with ASN1, but from what I know of Emakefiles the
> first entry in the tuple should be the target (module). According to the
> compile documentation ASN1 files are the source for targets, not
> targets.

Now my Emakefile is:

{"SSWConn", [{outdir, "."}]}.

There is SSWConn.asn file in directory. "erl -make" prints:

$ erl -make
Recompile: SSWConn
./SSWConn.erl:none: no such file or directory

BTW, for .erl files my Emakefile is:
{"src/*", [debug_info, {i, "../asn"}, {warn_format, 1}, {outdir, "ebin"}]}.

and all works fine.

--
Maxim Treskin

_______________________________________________
erlang-questions mailing list
erlang-questi...@erlang.org
http://www.erlang.org/mailman/listinfo/erlang-questions


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bertil Karlsson  
View profile  
 More options Feb 13 2009, 3:40 am
From: Bertil Karlsson <bertil.karls...@ericsson.com>
Date: Fri, 13 Feb 2009 09:40:55 +0100
Local: Fri, Feb 13 2009 3:40 am
Subject: Re: [erlang-questions] Does Emakefile support ASN.1 files?
What if you change the entry to for instance:
{"SSWConn", [{outdir, "."},ber_bin]}.

/Bertil

_______________________________________________
erlang-questions mailing list
erlang-questi...@erlang.org
http://www.erlang.org/mailman/listinfo/erlang-questions

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Maxim Treskin  
View profile  
 More options Feb 13 2009, 3:46 am
From: Maxim Treskin <zerth...@gmail.com>
Date: Fri, 13 Feb 2009 14:46:26 +0600
Local: Fri, Feb 13 2009 3:46 am
Subject: Re: [erlang-questions] Does Emakefile support ASN.1 files?

2009/2/13 Bertil Karlsson <bertil.karls...@ericsson.com>

> What if you change the entry to for instance:
> {"SSWConn", [{outdir, "."},ber_bin]}.

Same result

--
Maxim Treskin

_______________________________________________
erlang-questions mailing list
erlang-questi...@erlang.org
http://www.erlang.org/mailman/listinfo/erlang-questions


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Maxim Treskin  
View profile  
 More options Feb 13 2009, 3:56 am
From: Maxim Treskin <zerth...@gmail.com>
Date: Fri, 13 Feb 2009 14:56:59 +0600
Local: Fri, Feb 13 2009 3:56 am
Subject: Re: [erlang-questions] Does Emakefile support ASN.1 files?

There is expand/2 in make.erl, which handles only .erl files.
I can make patch for handling .asn files too, but I don't know, which
behaviour must be used here without conflicts with previous case.

--
Maxim Treskin

_______________________________________________
erlang-questions mailing list
erlang-questi...@erlang.org
http://www.erlang.org/mailman/listinfo/erlang-questions


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »