# This file is part of XEmacs. # Copyright (C) 2002, 2003, 2004 Ben Wing. # XEmacs is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; either version 2, or (at your option) any # later version. # XEmacs is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License # for more details. # You should have received a copy of the GNU General Public License # along with XEmacs; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # # All targets that compile as part of their operation do compilation need # to build all of the autoloads first before anything else. To avoid the # need to duplicate these declarations in three places, we use a separate # file. # # Make this the first target all: autoloads bytecompile all-with-html: all html install: all install-only bindist: all install-for-bindist .PHONY: all all-with-html install bindist # Indicate which targets need the pdepends to be built prior to doing # the work of the target. autoloads_NEED_PDEPENDS = t bytecompile_NEED_PDEPENDS = t all-with-html_NEED_PDEPENDS = t install_NEED_PDEPENDS = t bindist_NEED_PDEPENDS = t # Local Variables: # mode: makefile # End: