From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dan Nicolaescu Newsgroups: gmane.emacs.devel Subject: Makefile questions Date: Thu, 07 Oct 2010 11:13:53 -0400 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1286464814 6641 80.91.229.12 (7 Oct 2010 15:20:14 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 7 Oct 2010 15:20:14 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Oct 07 17:20:11 2010 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1P3sGQ-0007mQ-Ru for ged-emacs-devel@m.gmane.org; Thu, 07 Oct 2010 17:20:11 +0200 Original-Received: from localhost ([127.0.0.1]:49267 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P3sGP-0002ud-Tz for ged-emacs-devel@m.gmane.org; Thu, 07 Oct 2010 11:20:09 -0400 Original-Received: from [140.186.70.92] (port=53444 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P3sAR-0000T9-I5 for emacs-devel@gnu.org; Thu, 07 Oct 2010 11:14:01 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P3sAM-0001q0-94 for emacs-devel@gnu.org; Thu, 07 Oct 2010 11:13:55 -0400 Original-Received: from fencepost.gnu.org ([140.186.70.10]:58286) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P3sAM-0001pw-6O for emacs-devel@gnu.org; Thu, 07 Oct 2010 11:13:54 -0400 Original-Received: from dann by fencepost.gnu.org with local (Exim 4.69) (envelope-from ) id 1P3sAM-0007rA-3i for emacs-devel@gnu.org; Thu, 07 Oct 2010 11:13:54 -0400 User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:131431 Archived-At: Does anyone know why some variables in our Makefiles use $() and some ${} ? For example in in src/Makefile.in there's a mixture of both: LIBES = $(LIBS) $(LIBX_BASE) $(LIBX_OTHER) $(LIBSOUND) \ $(RSVG_LIBS) ${IMAGEMAGICK_LIBS} $(DBUS_LIBS) \ ${LIBXML2_LIBS} $(LIBGPM) $(LIBRESOLV) $(LIBS_SYSTEM) \ $(LIBS_TERMCAP) $(GETLOADAVG_LIBS) ${GCONF_LIBS} ${LIBSELINUX_LIBS} \ $(FREETYPE_LIBS) $(FONTCONFIG_LIBS) $(LIBOTF_LIBS) $(M17N_FLT_LIBS) \ $(LIBGNUTLS_LIBS) \ $(LIB_GCC) $(LIB_MATH) $(LIB_STANDARD) $(LIB_GCC) Also why the ugly ${lispsource}loaddefs.el instead of ${lispsource}/loaddefs.el ?