auto generated makefile updates

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@931 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 1998-08-06 04:20:33 +00:00
parent ba4ff070d0
commit ae2377cc81
3 changed files with 19 additions and 8 deletions

View File

@ -27,8 +27,9 @@
srcdir = .
CC = gcc
INCLPATH = -I.. -I./engine -I./register -I./../include
CFLAGS = -O2 -Wall -g -Wall ${INCLPATH}
INCLPATH = -I.. -I./engine -I./register -I./../include -I/usr/local/include
CFLAGS = -O2 -Wall -g -Wall -I/usr/X11R6/include ${INCLPATH}
######################################################################
# See Makefile.common for information about these variables.

View File

@ -25,15 +25,22 @@
# These three lines are suggested defs for autoconf (see the info pages).
prefix = /usr/local
srcdir = .
includedir=${prefix}/include
CC = gcc
INCLPATH = -I.. -I../.. -I../engine -I../register -I./../../include
INCLPATH = -I.. -I../.. -I../engine -I../register -I./../../include \
-I$(includedir) -I$(prefix)/lib/gnome-libs/include
CFLAGS = -O2 -Wall -g -Wall -I/usr/X11R6/include ${INCLPATH}
LDFLAGS = -g -Wall
LIBS = -lpng -ljpeg -lz -lm -lSM -lICE -lXpm -L/usr/X11R6/lib $(shell gtk-config --libs) \
-lgnomeui -lgnome -lgnomesupport -lgdk_imlib -ltiff -ldl
LIBS = -L$(prefix)/lib -lpng -ljpeg -lz -lm -lSM -lICE -lXpm -L/usr/X11R6/lib \
$(shell gtk-config --libs) -lgnomeui -lgnome \
-lgnomesupport -lintl -lgdk_imlib -ltiff
TARGET = ../../xacc.gtk.bin
STATIC = ../../xacc-static.gtk.bin
@ -42,7 +49,8 @@ OTHER_OBJS := ../obj/gnome/*.o ../engine/obj/*.o ../register/obj/gnome/*.o
######################################################################
# See Makefile.common for information about these variables.
GNOME_SRCS := main.c MainWindow.c MenuBar.c RegWindow.c Dialogs.c
GNOME_SRCS := main.c MainWindow.c MenuBar.c RegWindow.c Add_Dialog.c xtutil.c \
RecnWindow.c
# AccWindow.c AccountMenu.c AdjBWindow.c \
# BuildMenu.c Destroy.c FileBox.c HelpWindow.c \
# RecnWindow.c RegWindow.c Reports.c TextBox.c \

View File

@ -29,9 +29,11 @@ INCLPATH = -I./../.. \
-I./../../include \
-I./../engine \
-I./../../lib/ComboBox-1.33 \
-I./../../lib/Xbae-4.6.2-linas
-I./../../lib/Xbae-4.6.2-linas \
-I/usr/local/include
CFLAGS := -O2 -Wall -g -Wall -DCELL_WIDGETS=1 ${INCLPATH}
CFLAGS := -O2 -Wall -g -Wall -I/usr/X11R6/include -DCELL_WIDGETS=1 ${INCLPATH}
######################################################################
# See Makefile.common for information about these variables.