new input file for make

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@603 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas
1998-03-08 20:26:37 +00:00
parent 4008d9c5ee
commit e43fa1c8ce

75
src/register/Makefile.in Normal file
View File

@@ -0,0 +1,75 @@
#
######################################################################
#********************************************************************
#* Makefile -- makefile for xacc/src/register *
#* Copyright (C) 1997 Robin Clark *
#* Copyright (C) 1998 Linas Vepstas *
#* *
#* 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 = @srcdir@
VPATH = @srcdir@
CC = @CC@
RANLIB = @RANLIB@
INCLPATH = -I/usr/include \
-I/usr/local/include/. \
-I/usr/X11R6/include/. \
-I@srcdir@/../..
-I@srcdir@/../../include \
-I@srcdir@/../engine \
-I@srcdir@/../../lib/ComboBox-1.33 \
-I@srcdir@/../../lib/Xbae-4.6.2-linas
# CFLAGS = -g -DCELL_WIDGETS=1
CFLAGS = @cflags@
LFLAGS = @lflags@
LIBS = @LIBS@
LIBPATH = -L/lib -L/usr/lib -L/usr/local/lib
TARGET = ../libregister.a
######################################################################
SRCS = basiccell.c cellblock.c combocell.c \
datecell.c pricecell.c QuickFill.c quickfillcell.c \
recncell.c register.c table.c textcell.c
OBJS = ${SRCS:.c=.o}
######################################################################
default: $(TARGET)
$(TARGET): $(OBJS)
@echo "++++++"
$(AR) rv $(TARGET) $(OBJS)
$(RANLIB) $(TARGET)
.c.o:
@echo "+++"
$(CC) -c $(CFLAGS) $(INCLPATH) $<
depend:
makedepend -- $(INCLPATH) $(DEFN) -- $(SRCS)
clean:
rm -f *.o *~ *.bak
distclean: clean
rm -f $(TARGET) Makefile Makefile.bak config.h
# DO NOT DELETE THIS LINE -- make depend depends on it.