mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Delete the makefiles, They are autobuilt by configure, and
when they are mreged in cs they cause conflicts. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@946 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
38046f33b2
commit
e471ed8dd0
100
Makefile
100
Makefile
@ -1,100 +0,0 @@
|
||||
# Generated automatically from Makefile.in by configure.
|
||||
# Makefile -- makefile for xacc
|
||||
# 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
|
||||
|
||||
srcdir = .
|
||||
|
||||
PREFIX = /usr/local
|
||||
INSTALL = /usr/bin/ginstall -c
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
TARGET = xacc
|
||||
DOCDIR = share/xacc/Docs
|
||||
CPU = @target_cpu@
|
||||
|
||||
LIBS=-lpng -ljpeg -lz -lm
|
||||
|
||||
######################################################################
|
||||
# Description of targets:
|
||||
#
|
||||
# default -- make the application
|
||||
# depend -- generate the dependencies
|
||||
# clean -- remove *.a, *.o, *.bak, and *~
|
||||
# distclean -- get rid of config files too...
|
||||
# install -- installs everything
|
||||
|
||||
default:
|
||||
@echo " "
|
||||
@echo "Please choose one of the following targets:"
|
||||
@echo "motif dynamically linked motif version"
|
||||
@echo "motif-static statically linked motif version"
|
||||
@echo "gnome gnome/gtk version"
|
||||
@echo " "
|
||||
|
||||
motif:
|
||||
@cd lib; $(MAKE) motif
|
||||
@cd src; $(MAKE) motif
|
||||
|
||||
# link in motif libs statically
|
||||
motif-static:
|
||||
@cd lib; $(MAKE) motif
|
||||
@cd src; $(MAKE) motif-static
|
||||
|
||||
gnome:
|
||||
@cd lib; $(MAKE) gnome
|
||||
@cd src; $(MAKE) gnome
|
||||
|
||||
depend:
|
||||
@cd lib; $(MAKE) depend
|
||||
@cd src; $(MAKE) depend
|
||||
|
||||
clean:
|
||||
rm -f *~ *.o *.bak
|
||||
@cd lib; $(MAKE) clean
|
||||
@cd src; $(MAKE) clean
|
||||
|
||||
distclean: clean
|
||||
rm -f *~ *.o *.bak Makefile xacc xacc.gtk.bin
|
||||
rm -f config.cache config.log config.status config.h
|
||||
@cd lib; $(MAKE) distclean
|
||||
@cd src; $(MAKE) distclean
|
||||
|
||||
tagsfiles := $(shell find -name "*.[ch]")
|
||||
|
||||
TAGS: ${tagsfiles}
|
||||
etags ${tagsfiles}
|
||||
|
||||
install: $(TARGET)
|
||||
@mkdir -p $(PREFIX)/bin
|
||||
$(INSTALL) $(TARGET) $(PREFIX)/bin/$(TARGET)
|
||||
$(INSTALL) $(TARGET).bin $(PREFIX)/bin/$(TARGET).bin
|
||||
@mkdir -p $(PREFIX)/$(DOCDIR)
|
||||
$(INSTALL_DATA) Docs/*.html $(PREFIX)/$(DOCDIR)
|
||||
$(INSTALL_DATA) Docs/*.gif $(PREFIX)/$(DOCDIR)
|
||||
$(INSTALL_DATA) Docs/*.jpg $(PREFIX)/$(DOCDIR)
|
||||
$(INSTALL_DATA) Docs/*.xpm $(PREFIX)/$(DOCDIR)
|
||||
@mkdir -p $(PREFIX)/$(DOCDIR)/logos
|
||||
$(INSTALL_DATA) Docs/logos/* $(PREFIX)/$(DOCDIR)/logos
|
||||
|
||||
# Local Variables:
|
||||
# tab-width: 2
|
||||
# End:
|
65
lib/Makefile
65
lib/Makefile
@ -1,65 +0,0 @@
|
||||
# Generated automatically from Makefile.in by configure.
|
||||
# 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
|
||||
|
||||
# These three lines are suggested defs for autoconf (see the info pages).
|
||||
|
||||
srcdir = .
|
||||
|
||||
######################################################################
|
||||
# Description of targets:
|
||||
#
|
||||
# default -- make the application
|
||||
# clean -- remove *.a, *.o, *.bak, and *~
|
||||
# distclean -- get rid of config files too...
|
||||
# install -- ??todo??
|
||||
#
|
||||
|
||||
######################################################################
|
||||
# See Makefile.common for information about these variables.
|
||||
CLEAN_SUBDIRS := XmHTML-1.1.0 ComboBox-1.33 Xbae-4.6.2-linas
|
||||
######################################################################
|
||||
|
||||
all:
|
||||
@echo " "
|
||||
@echo "Please choose one of the following targets:"
|
||||
@echo "motif motif version"
|
||||
@echo "gnome gnome/gtk version"
|
||||
@echo " "
|
||||
|
||||
# This inclusion must come after the first target, and after the
|
||||
# definitions of *_SRCS, etc., but before the usage of *_OBJS.
|
||||
include ../Makefile.common
|
||||
|
||||
motif:
|
||||
@cd XmHTML-1.1.0; $(MAKE) default
|
||||
@cd ComboBox-1.33; $(MAKE) default
|
||||
@cd Xbae-4.6.2-linas; $(MAKE) default
|
||||
|
||||
gnome:
|
||||
|
||||
.PHONY: gnome motif
|
||||
|
||||
# Local Variables:
|
||||
# tab-width: 2
|
||||
# End:
|
13
xacc
13
xacc
@ -1,13 +0,0 @@
|
||||
#! /bin/sh
|
||||
# Generated automatically from xacc.in by configure.
|
||||
|
||||
XACC_HELP=${XACC_HELP:-/usr/local/share/xacc/Docs}
|
||||
export XACC_HELP
|
||||
|
||||
# hack alert -- we should really be using ldconfig to look for
|
||||
# this library.
|
||||
if [ -f /usr/X11R6/lib/libXm.so -o -L /usr/X11R6/lib/libXm.so ]; then
|
||||
exec xacc.bin $@
|
||||
else
|
||||
exec xacc-static.bin $@
|
||||
fi
|
Loading…
Reference in New Issue
Block a user