mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-23 01:16:43 -06:00
42b93ac314
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@1706 57a11ea4-9604-0410-9ed3-97b8803252fd
70 lines
2.6 KiB
Makefile
70 lines
2.6 KiB
Makefile
# Makefile -- makefile for xacc/lib
|
|
# Copyright (C) 1997 Robin Clark
|
|
# Copyright (C) 1998 Rob Browning <rlb@cs.utexas.edu>
|
|
#
|
|
# This program 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 of
|
|
# the License, or (at your option) any later version.
|
|
#
|
|
# This program 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 this program; if not, write to the Free Software
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
#
|
|
# Author: Robin Clark
|
|
# Internet: rclark@rush.aero.org
|
|
# Address: 609 8th Street
|
|
# Huntington Beach, CA 92648-4632
|
|
|
|
include @top_srcdir@/Makefile.init
|
|
|
|
######################################################################
|
|
# Description of targets:
|
|
#
|
|
# default -- make the application
|
|
# clean -- remove *.a, *.o, *.bak, and *~
|
|
# distclean -- get rid of config files too...
|
|
# install -- ??todo??
|
|
#
|
|
|
|
GTKSHEET_DIR := @GTKSHEET_DIR@
|
|
|
|
######################################################################
|
|
# See Makefile.common for information about these variables.
|
|
CLEAN_SUBDIRS := XmHTML-1.1.0 ComboBox-1.33 Xbae-4.6.2-linas
|
|
CLEAN_SUBDIRS += ${GTKSHEET_DIR}
|
|
######################################################################
|
|
|
|
all:
|
|
@echo " "
|
|
@echo "Please choose one of the following targets:"
|
|
@echo "motif motif version"
|
|
@echo "gnome gnome/gtk version"
|
|
@echo "qt kde/qt version"
|
|
@echo " "
|
|
|
|
# This inclusion must come after the first target, and after the
|
|
# definitions of *_SRCS, etc., but before the usage of *_OBJS.
|
|
include @top_srcdir@/Makefile.common
|
|
|
|
motif:
|
|
@cd ComboBox-1.33; $(MAKE) default
|
|
@cd Xbae-4.6.2-linas; $(MAKE) default
|
|
|
|
gnome:
|
|
@cd ${GTKSHEET_DIR}; $(MAKE) default
|
|
@cd gtkfilesel2; $(MAKE) default
|
|
|
|
qt:
|
|
|
|
.PHONY: gnome motif qt
|
|
|
|
# Local Variables:
|
|
# tab-width: 2
|
|
# End:
|