From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/47 Path: news.gmane.org!not-for-mail From: Igmar Palsenberg Newsgroups: gmane.linux.lib.musl.general Subject: Re: Cleanup patches Date: Tue, 7 Jun 2011 12:29:53 +0200 Message-ID: <759BB761-B435-4F24-982F-FECA85C527D1@palsenberg.com> References: <60BABB60-7D9B-4D66-8645-4CDFD07E1338@palsenberg.com> <20110606171317.GN6142@port70.net> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (Apple Message framework v1084) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1307442621 9221 80.91.229.12 (7 Jun 2011 10:30:21 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 7 Jun 2011 10:30:21 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-131-gllmg-musl=m.gmane.org@lists.openwall.com Tue Jun 07 12:30:17 2011 Return-path: Envelope-to: gllmg-musl@lo.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by lo.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1QTtY8-0004kR-9j for gllmg-musl@lo.gmane.org; Tue, 07 Jun 2011 12:30:16 +0200 Original-Received: (qmail 22009 invoked by uid 550); 7 Jun 2011 10:30:15 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 21996 invoked from network); 7 Jun 2011 10:30:15 -0000 In-Reply-To: <20110606171317.GN6142@port70.net> X-Mailer: Apple Mail (2.1084) Xref: news.gmane.org gmane.linux.lib.musl.general:47 Archived-At: > --- a/Makefile > +++ b/Makefile > @@ -63,7 +63,7 @@ include/bits/alltypes.h: include/bits/alltypes.h.sh > sh $< > $@ > > %.o: $(ARCH)/%.s > - $(CC) $(CFLAGS) $(INC) -c -o $@ $< > + $(CC) -c -o $@ $< > > this could be $(AS) -o $@ $< No, because it then assume the .s file has an entrypoint. Igmar