Added zlib support.
This commit is contained in:
parent
18ae70b3b1
commit
fe33bf171e
10 changed files with 58 additions and 14 deletions
|
@ -344,8 +344,8 @@ INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
|
|||
|
||||
#---------------------------------------------------------------------------
|
||||
# $Log$
|
||||
# Revision 1.3 1998/04/18 04:02:48 curt
|
||||
# Added zlib support in placed and other misc. tweaks.
|
||||
# Revision 1.4 1998/04/24 00:43:59 curt
|
||||
# Added zlib support.
|
||||
#
|
||||
# Revision 1.2 1998/04/14 02:25:59 curt
|
||||
# Code reorganizations. Added a Lib/ directory for more general libraries.
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
bin_PROGRAMS = raw2ascii
|
||||
|
||||
raw2ascii_SOURCES = main.c rawdem.c
|
||||
raw2ascii_SOURCES = main.c rawdem.c rawdem.h
|
||||
|
||||
raw2ascii_LDADD =
|
||||
|
||||
|
@ -35,6 +35,9 @@ INCLUDES +=
|
|||
|
||||
#---------------------------------------------------------------------------
|
||||
# $Log$
|
||||
# Revision 1.2 1998/04/24 00:44:04 curt
|
||||
# Added zlib support.
|
||||
#
|
||||
# Revision 1.1 1998/04/18 03:59:44 curt
|
||||
# Incorporated into gnu automake/autoconf system.
|
||||
#
|
||||
|
|
|
@ -98,7 +98,7 @@ VERSION = @VERSION@
|
|||
|
||||
bin_PROGRAMS = raw2ascii
|
||||
|
||||
raw2ascii_SOURCES = main.c rawdem.c
|
||||
raw2ascii_SOURCES = main.c rawdem.c rawdem.h
|
||||
|
||||
raw2ascii_LDADD =
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
|
@ -343,7 +343,10 @@ INCLUDES +=
|
|||
|
||||
#---------------------------------------------------------------------------
|
||||
# $Log$
|
||||
# Revision 1.1 1998/04/18 03:59:45 curt
|
||||
# Revision 1.2 1998/04/24 00:44:04 curt
|
||||
# Added zlib support.
|
||||
#
|
||||
# Revision 1.1 1998/04/18 03:59:44 curt
|
||||
# Incorporated into gnu automake/autoconf system.
|
||||
#
|
||||
|
||||
|
|
|
@ -371,6 +371,9 @@ INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
|
|||
|
||||
#---------------------------------------------------------------------------
|
||||
# $Log$
|
||||
# Revision 1.4 1998/04/24 00:44:04 curt
|
||||
# Added zlib support.
|
||||
#
|
||||
# Revision 1.3 1998/04/18 04:02:54 curt
|
||||
# Added zlib support in placed and other misc. tweaks.
|
||||
#
|
||||
|
|
|
@ -28,13 +28,19 @@ bin_PROGRAMS = fixobj
|
|||
|
||||
fixobj_SOURCES = main.c obj.c obj.h
|
||||
|
||||
fixobj_LDADD = $(top_builddir)/Lib/Math/libMath.la
|
||||
fixobj_LDADD = \
|
||||
$(top_builddir)/Lib/Math/libMath.la \
|
||||
$(top_builddir)/Lib/Debug/libDebug.la \
|
||||
$(top_builddir)/Lib/zlib/libz.la
|
||||
|
||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
|
||||
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
# $Log$
|
||||
# Revision 1.4 1998/04/24 00:44:05 curt
|
||||
# Added zlib support.
|
||||
#
|
||||
# Revision 1.3 1998/04/18 04:01:02 curt
|
||||
# Now use libMath rather than having local copies of math routines.
|
||||
#
|
||||
|
|
|
@ -100,7 +100,10 @@ bin_PROGRAMS = fixobj
|
|||
|
||||
fixobj_SOURCES = main.c obj.c obj.h
|
||||
|
||||
fixobj_LDADD = $(top_builddir)/Lib/Math/libMath.la
|
||||
fixobj_LDADD = \
|
||||
$(top_builddir)/Lib/Math/libMath.la \
|
||||
$(top_builddir)/Lib/Debug/libDebug.la \
|
||||
$(top_builddir)/Lib/zlib/libz.la
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
CONFIG_HEADER = ../../Include/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
|
@ -116,7 +119,8 @@ X_LIBS = @X_LIBS@
|
|||
X_EXTRA_LIBS = @X_EXTRA_LIBS@
|
||||
X_PRE_LIBS = @X_PRE_LIBS@
|
||||
fixobj_OBJECTS = main.o obj.o
|
||||
fixobj_DEPENDENCIES = $(top_builddir)/Lib/Math/libMath.la
|
||||
fixobj_DEPENDENCIES = $(top_builddir)/Lib/Math/libMath.la \
|
||||
$(top_builddir)/Lib/Debug/libDebug.la $(top_builddir)/Lib/zlib/libz.la
|
||||
fixobj_LDFLAGS =
|
||||
CFLAGS = @CFLAGS@
|
||||
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
|
||||
|
@ -343,6 +347,9 @@ INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
|
|||
|
||||
#---------------------------------------------------------------------------
|
||||
# $Log$
|
||||
# Revision 1.4 1998/04/24 00:44:05 curt
|
||||
# Added zlib support.
|
||||
#
|
||||
# Revision 1.3 1998/04/18 04:01:02 curt
|
||||
# Now use libMath rather than having local copies of math routines.
|
||||
#
|
||||
|
|
|
@ -30,13 +30,18 @@ splittris_SOURCES = splittris.c splittris.h
|
|||
|
||||
splittris_LDADD = \
|
||||
$(top_builddir)/Lib/Bucket/libBucket.la \
|
||||
$(top_builddir)/Lib/Math/libMath.la
|
||||
$(top_builddir)/Lib/Math/libMath.la \
|
||||
$(top_builddir)/Lib/Debug/libDebug.la \
|
||||
$(top_builddir)/Lib/zlib/libz.la
|
||||
|
||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
|
||||
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
# $Log$
|
||||
# Revision 1.4 1998/04/24 00:44:06 curt
|
||||
# Added zlib support.
|
||||
#
|
||||
# Revision 1.3 1998/04/18 04:01:17 curt
|
||||
# Now use libMath rather than having local copies of math routines.
|
||||
#
|
||||
|
|
|
@ -102,7 +102,9 @@ splittris_SOURCES = splittris.c splittris.h
|
|||
|
||||
splittris_LDADD = \
|
||||
$(top_builddir)/Lib/Bucket/libBucket.la \
|
||||
$(top_builddir)/Lib/Math/libMath.la
|
||||
$(top_builddir)/Lib/Math/libMath.la \
|
||||
$(top_builddir)/Lib/Debug/libDebug.la \
|
||||
$(top_builddir)/Lib/zlib/libz.la
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
CONFIG_HEADER = ../../Include/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
|
@ -119,7 +121,8 @@ X_EXTRA_LIBS = @X_EXTRA_LIBS@
|
|||
X_PRE_LIBS = @X_PRE_LIBS@
|
||||
splittris_OBJECTS = splittris.o
|
||||
splittris_DEPENDENCIES = $(top_builddir)/Lib/Bucket/libBucket.la \
|
||||
$(top_builddir)/Lib/Math/libMath.la
|
||||
$(top_builddir)/Lib/Math/libMath.la \
|
||||
$(top_builddir)/Lib/Debug/libDebug.la $(top_builddir)/Lib/zlib/libz.la
|
||||
splittris_LDFLAGS =
|
||||
CFLAGS = @CFLAGS@
|
||||
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
|
||||
|
@ -346,6 +349,9 @@ INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
|
|||
|
||||
#---------------------------------------------------------------------------
|
||||
# $Log$
|
||||
# Revision 1.4 1998/04/24 00:44:06 curt
|
||||
# Added zlib support.
|
||||
#
|
||||
# Revision 1.3 1998/04/18 04:01:17 curt
|
||||
# Now use libMath rather than having local copies of math routines.
|
||||
#
|
||||
|
|
|
@ -30,13 +30,18 @@ tri2obj_SOURCES = tri2obj.c tri2obj.h
|
|||
|
||||
tri2obj_LDADD = \
|
||||
$(top_builddir)/Lib/Bucket/libBucket.la \
|
||||
$(top_builddir)/Lib/Math/libMath.la
|
||||
$(top_builddir)/Lib/Math/libMath.la \
|
||||
$(top_builddir)/Lib/Debug/libDebug.la \
|
||||
$(top_builddir)/Lib/zlib/libz.la
|
||||
|
||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
|
||||
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
# $Log$
|
||||
# Revision 1.4 1998/04/24 00:44:07 curt
|
||||
# Added zlib support.
|
||||
#
|
||||
# Revision 1.3 1998/04/18 04:01:29 curt
|
||||
# Now use libMath rather than having local copies of math routines.
|
||||
#
|
||||
|
|
|
@ -102,7 +102,9 @@ tri2obj_SOURCES = tri2obj.c tri2obj.h
|
|||
|
||||
tri2obj_LDADD = \
|
||||
$(top_builddir)/Lib/Bucket/libBucket.la \
|
||||
$(top_builddir)/Lib/Math/libMath.la
|
||||
$(top_builddir)/Lib/Math/libMath.la \
|
||||
$(top_builddir)/Lib/Debug/libDebug.la \
|
||||
$(top_builddir)/Lib/zlib/libz.la
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
CONFIG_HEADER = ../../Include/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
|
@ -119,7 +121,8 @@ X_EXTRA_LIBS = @X_EXTRA_LIBS@
|
|||
X_PRE_LIBS = @X_PRE_LIBS@
|
||||
tri2obj_OBJECTS = tri2obj.o
|
||||
tri2obj_DEPENDENCIES = $(top_builddir)/Lib/Bucket/libBucket.la \
|
||||
$(top_builddir)/Lib/Math/libMath.la
|
||||
$(top_builddir)/Lib/Math/libMath.la \
|
||||
$(top_builddir)/Lib/Debug/libDebug.la $(top_builddir)/Lib/zlib/libz.la
|
||||
tri2obj_LDFLAGS =
|
||||
CFLAGS = @CFLAGS@
|
||||
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
|
||||
|
@ -346,6 +349,9 @@ INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
|
|||
|
||||
#---------------------------------------------------------------------------
|
||||
# $Log$
|
||||
# Revision 1.4 1998/04/24 00:44:07 curt
|
||||
# Added zlib support.
|
||||
#
|
||||
# Revision 1.3 1998/04/18 04:01:29 curt
|
||||
# Now use libMath rather than having local copies of math routines.
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue