From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 856 invoked by alias); 12 Feb 2011 03:13:07 -0000 Received: (qmail 848 invoked by uid 22791); 12 Feb 2011 03:13:06 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL,BAYES_00,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (38.113.113.100) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 12 Feb 2011 03:12:59 +0000 Received: (qmail 8734 invoked from network); 12 Feb 2011 03:12:57 -0000 Received: from unknown (HELO ?192.168.0.101?) (yao@127.0.0.2) by mail.codesourcery.com with ESMTPA; 12 Feb 2011 03:12:57 -0000 Message-ID: <4D55FAB4.7090001@codesourcery.com> Date: Sat, 12 Feb 2011 03:13:00 -0000 From: Yao Qi User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.13) Gecko/20101208 Lightning/1.0b2 Thunderbird/3.1.7 MIME-Version: 1.0 To: Tom Tromey CC: Pedro Alves , gdb-patches@sourceware.org Subject: Re: [rfa/rfc] Build libcommon.a for gdb and gdbserver References: <4D30E23F.3080103@codesourcery.com> <4D375F44.70504@codesourcery.com> <201101281504.38962.pedro@codesourcery.com> <4D550834.6080807@codesourcery.com> In-Reply-To: Content-Type: multipart/mixed; boundary="------------030200050701050508020307" X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2011-02/txt/msg00234.txt.bz2 This is a multi-part message in MIME format. --------------030200050701050508020307 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Content-length: 495 On 02/12/2011 02:47 AM, Tom Tromey wrote: > common/Makefile.in doesn't have a copyright header. > I didn't check the other files. > Add a copyright header to common/Makefile.in. Other files have copyright header. Applied as obvious. > "make info" now fails. I didn't check other subdir targets in > gdb/Makefile.in. Automake would solve this plus some other things > ... :-) Add some more targets in common/Makefile.in in this patch. `make {info,pdf,html,dvi}' works. -- Yao (齐尧) --------------030200050701050508020307 Content-Type: text/x-patch; name="more-targets.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="more-targets.patch" Content-length: 756 common/ * Makefile.in: Add more targets for make. Index: Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/common/Makefile.in,v retrieving revision 1.1 diff -u -r1.1 Makefile.in --- Makefile.in 11 Feb 2011 09:57:25 -0000 1.1 +++ Makefile.in 12 Feb 2011 02:54:15 -0000 @@ -74,3 +91,20 @@ distclean maintainer-clean realclean: clean -rm -f *~ -rm -f Makefile config.status config.log + +.PHONY: install +install: all + +.PHONY: install-only +install-only: + +.PHONY: uninstall +uninstall: + +.PHONY: check installcheck info dvi pdf html +.PHONY: install-info install-pdf install-html clean-info +check installcheck: +info dvi pdf html: +install-info install-pdf install-html: +clean-info: + --------------030200050701050508020307--