removed old bc++ makefiles
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22940 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1,172 +0,0 @@
|
||||
#
|
||||
# File: makefile.b32
|
||||
# Author: Julian Smart
|
||||
# Created: 1993
|
||||
# Updated:
|
||||
# Copyright:
|
||||
#
|
||||
# "%W% %G%"
|
||||
#
|
||||
# Makefile : Builds JPEG library (BC++ 32-bit)
|
||||
|
||||
LIBTARGET=jpeg
|
||||
WXWIN=..\..
|
||||
|
||||
!include ..\makeb32.env
|
||||
|
||||
SYSDEPMEM= \
|
||||
$(OBJ_PATH)\jmemnobs.obj
|
||||
|
||||
# library object files common to compression and decompression
|
||||
COMOBJECTS= \
|
||||
$(OBJ_PATH)\jcomapi.obj \
|
||||
$(OBJ_PATH)\jutils.obj \
|
||||
$(OBJ_PATH)\jerror.obj \
|
||||
$(OBJ_PATH)\jmemmgr.obj \
|
||||
$(SYSDEPMEM)
|
||||
|
||||
# compression library object files
|
||||
CLIBOBJECTS= \
|
||||
$(OBJ_PATH)\jcapimin.obj \
|
||||
$(OBJ_PATH)\jcapistd.obj \
|
||||
$(OBJ_PATH)\jctrans.obj \
|
||||
$(OBJ_PATH)\jcparam.obj \
|
||||
$(OBJ_PATH)\jdatadst.obj \
|
||||
$(OBJ_PATH)\jcinit.obj \
|
||||
$(OBJ_PATH)\jcmaster.obj \
|
||||
$(OBJ_PATH)\jcmarker.obj \
|
||||
$(OBJ_PATH)\jcmainct.obj \
|
||||
$(OBJ_PATH)\jcprepct.obj \
|
||||
$(OBJ_PATH)\jccoefct.obj \
|
||||
$(OBJ_PATH)\jccolor.obj \
|
||||
$(OBJ_PATH)\jcsample.obj \
|
||||
$(OBJ_PATH)\jchuff.obj \
|
||||
$(OBJ_PATH)\jcphuff.obj \
|
||||
$(OBJ_PATH)\jcdctmgr.obj \
|
||||
$(OBJ_PATH)\jfdctfst.obj \
|
||||
$(OBJ_PATH)\jfdctflt.obj \
|
||||
$(OBJ_PATH)\jfdctint.obj
|
||||
|
||||
# decompression library object files
|
||||
DLIBOBJECTS= \
|
||||
$(OBJ_PATH)\jdapimin.obj \
|
||||
$(OBJ_PATH)\jdapistd.obj \
|
||||
$(OBJ_PATH)\jdtrans.obj \
|
||||
$(OBJ_PATH)\jdatasrc.obj \
|
||||
$(OBJ_PATH)\jdmaster.obj \
|
||||
$(OBJ_PATH)\jdinput.obj \
|
||||
$(OBJ_PATH)\jdmarker.obj \
|
||||
$(OBJ_PATH)\jdhuff.obj \
|
||||
$(OBJ_PATH)\jdphuff.obj \
|
||||
$(OBJ_PATH)\jdmainct.obj \
|
||||
$(OBJ_PATH)\jdcoefct.obj \
|
||||
$(OBJ_PATH)\jdpostct.obj \
|
||||
$(OBJ_PATH)\jddctmgr.obj \
|
||||
$(OBJ_PATH)\jidctfst.obj \
|
||||
$(OBJ_PATH)\jidctflt.obj \
|
||||
$(OBJ_PATH)\jidctint.obj \
|
||||
$(OBJ_PATH)\jidctred.obj \
|
||||
$(OBJ_PATH)\jdsample.obj \
|
||||
$(OBJ_PATH)\jdcolor.obj \
|
||||
$(OBJ_PATH)\jquant1.obj \
|
||||
$(OBJ_PATH)\jquant2.obj \
|
||||
$(OBJ_PATH)\jdmerge.obj
|
||||
|
||||
# These objectfiles are included in libjpeg.lib
|
||||
OBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS)
|
||||
|
||||
$(OBJ_PATH)\jmemnobs.obj: jmemnobs.c
|
||||
|
||||
$(OBJ_PATH)\jcomapi.obj: jcomapi.c
|
||||
|
||||
$(OBJ_PATH)\jutils.obj: jutils.c
|
||||
|
||||
$(OBJ_PATH)\jerror.obj: jerror.c
|
||||
|
||||
$(OBJ_PATH)\jmemmgr.obj: jmemmgr.c
|
||||
|
||||
$(OBJ_PATH)\jcapimin.obj: jcapimin.c
|
||||
|
||||
$(OBJ_PATH)\jcapistd.obj: jcapistd.c
|
||||
|
||||
$(OBJ_PATH)\jctrans.obj: jctrans.c
|
||||
|
||||
$(OBJ_PATH)\jcparam.obj: jcparam.c
|
||||
|
||||
$(OBJ_PATH)\jdatadst.obj: jdatadst.c
|
||||
|
||||
$(OBJ_PATH)\jcinit.obj: jcinit.c
|
||||
|
||||
$(OBJ_PATH)\jcmaster.obj: jcmaster.c
|
||||
|
||||
$(OBJ_PATH)\jcmarker.obj: jcmarker.c
|
||||
|
||||
$(OBJ_PATH)\jcmainct.obj: jcmainct.c
|
||||
|
||||
$(OBJ_PATH)\jcprepct.obj: jcprepct.c
|
||||
|
||||
$(OBJ_PATH)\jccoefct.obj: jccoefct.c
|
||||
|
||||
$(OBJ_PATH)\jccolor.obj: jccolor.c
|
||||
|
||||
$(OBJ_PATH)\jcsample.obj: jcsample.c
|
||||
|
||||
$(OBJ_PATH)\jchuff.obj: jchuff.c
|
||||
|
||||
$(OBJ_PATH)\jcphuff.obj: jcphuff.c
|
||||
|
||||
$(OBJ_PATH)\jcdctmgr.obj: jcdctmgr.c
|
||||
|
||||
$(OBJ_PATH)\jfdctfst.obj: jfdctfst.c
|
||||
|
||||
$(OBJ_PATH)\jfdctflt.obj: jfdctflt.c
|
||||
|
||||
$(OBJ_PATH)\jfdctint.obj: jfdctint.c
|
||||
|
||||
$(OBJ_PATH)\jdapimin.obj: jdapimin.c
|
||||
|
||||
$(OBJ_PATH)\jdapistd.obj: jdapistd.c
|
||||
|
||||
$(OBJ_PATH)\jdtrans.obj: jdtrans.c
|
||||
|
||||
$(OBJ_PATH)\jdatasrc.obj: jdatasrc.c
|
||||
|
||||
$(OBJ_PATH)\jdmaster.obj: jdmaster.c
|
||||
|
||||
$(OBJ_PATH)\jdinput.obj: jdinput.c
|
||||
|
||||
$(OBJ_PATH)\jdmarker.obj: jdmarker.c
|
||||
|
||||
$(OBJ_PATH)\jdhuff.obj: jdhuff.c
|
||||
|
||||
$(OBJ_PATH)\jdphuff.obj: jdphuff.c
|
||||
|
||||
$(OBJ_PATH)\jdmainct.obj: jdmainct.c
|
||||
|
||||
$(OBJ_PATH)\jdcoefct.obj: jdcoefct.c
|
||||
|
||||
$(OBJ_PATH)\jdpostct.obj: jdpostct.c
|
||||
|
||||
$(OBJ_PATH)\jddctmgr.obj: jddctmgr.c
|
||||
|
||||
$(OBJ_PATH)\jidctfst.obj: jidctfst.c
|
||||
|
||||
$(OBJ_PATH)\jidctflt.obj: jidctflt.c
|
||||
|
||||
$(OBJ_PATH)\jidctint.obj: jidctint.c
|
||||
|
||||
$(OBJ_PATH)\jidctred.obj: jidctred.c
|
||||
|
||||
$(OBJ_PATH)\jdsample.obj: jdsample.c
|
||||
|
||||
$(OBJ_PATH)\jdcolor.obj: jdcolor.c
|
||||
|
||||
$(OBJ_PATH)\jquant1.obj: jquant1.c
|
||||
|
||||
$(OBJ_PATH)\jquant2.obj: jquant2.c
|
||||
|
||||
$(OBJ_PATH)\jdmerge.obj: jdmerge.c
|
||||
|
||||
|
||||
|
||||
!include ..\makelib.b32
|
1868
src/msw/makefile.b32
1868
src/msw/makefile.b32
File diff suppressed because it is too large
Load Diff
@@ -1,71 +0,0 @@
|
||||
#
|
||||
# File: makefile.b32
|
||||
# Author: Julian Smart
|
||||
# Created: 1993
|
||||
# Updated:
|
||||
# Copyright:
|
||||
#
|
||||
# "%W% %G%"
|
||||
#
|
||||
# Makefile : Builds PNG library (BC++ 32-bit)
|
||||
|
||||
# WXWIN and BCCDIR are set by parent make
|
||||
|
||||
|
||||
WXWIN=..\..
|
||||
LIBTARGET=png
|
||||
|
||||
!include ..\makeb32.env
|
||||
|
||||
OBJECTS = $(OBJ_PATH)\png.obj \
|
||||
$(OBJ_PATH)\pngread.obj \
|
||||
$(OBJ_PATH)\pngrtran.obj \
|
||||
$(OBJ_PATH)\pngrutil.obj \
|
||||
$(OBJ_PATH)\pngpread.obj \
|
||||
$(OBJ_PATH)\pngtrans.obj \
|
||||
$(OBJ_PATH)\pngwrite.obj \
|
||||
$(OBJ_PATH)\pngwtran.obj \
|
||||
$(OBJ_PATH)\pngwutil.obj \
|
||||
$(OBJ_PATH)\pngerror.obj \
|
||||
$(OBJ_PATH)\pngmem.obj \
|
||||
$(OBJ_PATH)\pngwio.obj \
|
||||
$(OBJ_PATH)\pngrio.obj \
|
||||
$(OBJ_PATH)\pngget.obj \
|
||||
$(OBJ_PATH)\pngset.obj
|
||||
|
||||
# Precompiled headers seem to interfere with correct compilation
|
||||
# of png library, so switch them off
|
||||
EXTRACPPFLAGS=-H-
|
||||
|
||||
|
||||
$(OBJ_PATH)\png.obj: png.c
|
||||
|
||||
$(OBJ_PATH)\pngread.obj: pngread.c
|
||||
|
||||
$(OBJ_PATH)\pngrtran.obj: pngrtran.c
|
||||
|
||||
$(OBJ_PATH)\pngrutil.obj: pngrutil.c
|
||||
|
||||
$(OBJ_PATH)\pngpread.obj: pngpread.c
|
||||
|
||||
$(OBJ_PATH)\pngtrans.obj: pngtrans.c
|
||||
|
||||
$(OBJ_PATH)\pngwrite.obj: pngwrite.c
|
||||
|
||||
$(OBJ_PATH)\pngwtran.obj: pngwtran.c
|
||||
|
||||
$(OBJ_PATH)\pngwutil.obj: pngwutil.c
|
||||
|
||||
$(OBJ_PATH)\pngerror.obj: pngerror.c
|
||||
|
||||
$(OBJ_PATH)\pngmem.obj: pngmem.c
|
||||
|
||||
$(OBJ_PATH)\pngwio.obj: pngwio.c
|
||||
|
||||
$(OBJ_PATH)\pngrio.obj: pngrio.c
|
||||
|
||||
$(OBJ_PATH)\pngget.obj: pngget.c
|
||||
|
||||
$(OBJ_PATH)\pngset.obj: pngset.c
|
||||
|
||||
!include ..\makelib.b32
|
@@ -1,38 +0,0 @@
|
||||
# File: makefile.b32
|
||||
# Author: Julian Smart
|
||||
# Created: 1993
|
||||
# Updated:
|
||||
# Copyright:
|
||||
#
|
||||
# "%W% %G%"
|
||||
#
|
||||
# Makefile : Builds TIFF library (BC++ 32-bit)
|
||||
|
||||
# WXWIN and BCCDIR are set by parent make
|
||||
|
||||
|
||||
WXWIN=..\..
|
||||
LIBTARGET=regex
|
||||
|
||||
!include ..\makeb32.env
|
||||
|
||||
|
||||
OBJECTS= \
|
||||
$(OBJ_PATH)\regcomp.obj \
|
||||
$(OBJ_PATH)\regexec.obj \
|
||||
$(OBJ_PATH)\regerror.obj \
|
||||
$(OBJ_PATH)\regfree.obj
|
||||
|
||||
# Pull in standard variable definitions
|
||||
|
||||
|
||||
$(OBJ_PATH)\regcomp.obj: regcomp.c
|
||||
|
||||
$(OBJ_PATH)\regexec.obj: regexec.c
|
||||
|
||||
$(OBJ_PATH)\regerror.obj: regerror.c
|
||||
|
||||
$(OBJ_PATH)\regfree.obj: regfree.c
|
||||
|
||||
!include ..\makelib.b32
|
||||
|
@@ -1,123 +0,0 @@
|
||||
# File: makefile.b32
|
||||
# Author: Julian Smart
|
||||
# Created: 1993
|
||||
# Updated:
|
||||
# Copyright:
|
||||
#
|
||||
# "%W% %G%"
|
||||
#
|
||||
# Makefile : Builds TIFF library (BC++ 32-bit)
|
||||
|
||||
# WXWIN and BCCDIR are set by parent make
|
||||
|
||||
|
||||
WXWIN=..\..
|
||||
LIBTARGET=tiff
|
||||
|
||||
!include ..\makeb32.env
|
||||
|
||||
OBJECTS= \
|
||||
$(OBJ_PATH)\tif_aux.obj \
|
||||
$(OBJ_PATH)\tif_close.obj \
|
||||
$(OBJ_PATH)\tif_codec.obj \
|
||||
$(OBJ_PATH)\tif_compress.obj \
|
||||
$(OBJ_PATH)\tif_dir.obj \
|
||||
$(OBJ_PATH)\tif_dirinfo.obj \
|
||||
$(OBJ_PATH)\tif_dirread.obj \
|
||||
$(OBJ_PATH)\tif_dirwrite.obj \
|
||||
$(OBJ_PATH)\tif_dumpmode.obj \
|
||||
$(OBJ_PATH)\tif_error.obj \
|
||||
$(OBJ_PATH)\tif_fax3.obj \
|
||||
$(OBJ_PATH)\tif_fax3sm.obj \
|
||||
$(OBJ_PATH)\tif_flush.obj \
|
||||
$(OBJ_PATH)\tif_getimage.obj \
|
||||
$(OBJ_PATH)\tif_jpeg.obj \
|
||||
$(OBJ_PATH)\tif_luv.obj \
|
||||
$(OBJ_PATH)\tif_lzw.obj \
|
||||
$(OBJ_PATH)\tif_next.obj \
|
||||
$(OBJ_PATH)\tif_open.obj \
|
||||
$(OBJ_PATH)\tif_packbits.obj \
|
||||
$(OBJ_PATH)\tif_pixarlog.obj \
|
||||
$(OBJ_PATH)\tif_predict.obj \
|
||||
$(OBJ_PATH)\tif_print.obj \
|
||||
$(OBJ_PATH)\tif_read.obj \
|
||||
$(OBJ_PATH)\tif_strip.obj \
|
||||
$(OBJ_PATH)\tif_swab.obj \
|
||||
$(OBJ_PATH)\tif_thunder.obj \
|
||||
$(OBJ_PATH)\tif_tile.obj \
|
||||
$(OBJ_PATH)\tif_version.obj \
|
||||
$(OBJ_PATH)\tif_warning.obj \
|
||||
$(OBJ_PATH)\tif_win32.obj \
|
||||
$(OBJ_PATH)\tif_write.obj \
|
||||
$(OBJ_PATH)\tif_zip.obj \
|
||||
|
||||
# Pull in standard variable definitions
|
||||
|
||||
$(OBJ_PATH)\tif_aux.obj: tif_aux.c
|
||||
|
||||
$(OBJ_PATH)\tif_close.obj: tif_close.c
|
||||
|
||||
$(OBJ_PATH)\tif_codec.obj: tif_codec.c
|
||||
|
||||
$(OBJ_PATH)\tif_compress.obj: tif_compress.c
|
||||
|
||||
$(OBJ_PATH)\tif_dir.obj: tif_dir.c
|
||||
|
||||
$(OBJ_PATH)\tif_dirinfo.obj: tif_dirinfo.c
|
||||
|
||||
$(OBJ_PATH)\tif_dirread.obj: tif_dirread.c
|
||||
|
||||
$(OBJ_PATH)\tif_dirwrite.obj: tif_dirwrite.c
|
||||
|
||||
$(OBJ_PATH)\tif_dumpmode.obj: tif_dumpmode.c
|
||||
|
||||
$(OBJ_PATH)\tif_error.obj: tif_error.c
|
||||
|
||||
$(OBJ_PATH)\tif_fax3.obj: tif_fax3.c
|
||||
|
||||
$(OBJ_PATH)\tif_fax3sm.obj: tif_fax3sm.c
|
||||
|
||||
$(OBJ_PATH)\tif_flush.obj: tif_flush.c
|
||||
|
||||
$(OBJ_PATH)\tif_getimage.obj: tif_getimage.c
|
||||
|
||||
$(OBJ_PATH)\tif_jpeg.obj: tif_jpeg.c
|
||||
|
||||
$(OBJ_PATH)\tif_luv.obj: tif_luv.c
|
||||
|
||||
$(OBJ_PATH)\tif_lzw.obj: tif_lzw.c
|
||||
|
||||
$(OBJ_PATH)\tif_next.obj: tif_next.c
|
||||
|
||||
$(OBJ_PATH)\tif_open.obj: tif_open.c
|
||||
|
||||
$(OBJ_PATH)\tif_packbits.obj: tif_packbits.c
|
||||
|
||||
$(OBJ_PATH)\tif_pixarlog.obj: tif_pixarlog.c
|
||||
|
||||
$(OBJ_PATH)\tif_predict.obj: tif_predict.c
|
||||
|
||||
$(OBJ_PATH)\tif_print.obj: tif_print.c
|
||||
|
||||
$(OBJ_PATH)\tif_read.obj: tif_read.c
|
||||
|
||||
$(OBJ_PATH)\tif_strip.obj: tif_strip.c
|
||||
|
||||
$(OBJ_PATH)\tif_swab.obj: tif_swab.c
|
||||
|
||||
$(OBJ_PATH)\tif_thunder.obj: tif_thunder.c
|
||||
|
||||
$(OBJ_PATH)\tif_tile.obj: tif_tile.c
|
||||
|
||||
$(OBJ_PATH)\tif_version.obj: tif_version.c
|
||||
|
||||
$(OBJ_PATH)\tif_warning.obj: tif_warning.c
|
||||
|
||||
$(OBJ_PATH)\tif_win32.obj: tif_win32.c
|
||||
|
||||
$(OBJ_PATH)\tif_write.obj: tif_write.c
|
||||
|
||||
$(OBJ_PATH)\tif_zip.obj: tif_zip.c
|
||||
|
||||
!include ..\makelib.b32
|
||||
|
@@ -1,68 +0,0 @@
|
||||
# Makefile for zlib
|
||||
# Borland C++
|
||||
|
||||
# This version of the zlib makefile was adapted by Chris Young for use
|
||||
# with Borland C 4.5x with the Dos Power Pack for a 32-bit protected mode
|
||||
# flat memory model. It was created for use with POV-Ray ray tracer and
|
||||
# you may choose to edit the CFLAGS to suit your needs but the
|
||||
# switches -WX and -DMSDOS are required.
|
||||
# -- Chris Young 76702.1655@compuserve.com
|
||||
|
||||
## modified further for 32 bit windows
|
||||
|
||||
# To use, do "make -fmakefile.b32"
|
||||
|
||||
# See zconf.h for details about the memory requirements.
|
||||
|
||||
# ------------- Borland C++ -------------
|
||||
|
||||
|
||||
WXWIN=..\..
|
||||
LIBTARGET=zlib
|
||||
|
||||
!include ..\makeb32.env
|
||||
|
||||
OBJECTS = $(OBJ_PATH)\adler32.obj \
|
||||
$(OBJ_PATH)\compress.obj \
|
||||
$(OBJ_PATH)\crc32.obj \
|
||||
$(OBJ_PATH)\gzio.obj \
|
||||
$(OBJ_PATH)\uncompr.obj \
|
||||
$(OBJ_PATH)\deflate.obj \
|
||||
$(OBJ_PATH)\trees.obj \
|
||||
$(OBJ_PATH)\zutil.obj \
|
||||
$(OBJ_PATH)\inflate.obj \
|
||||
$(OBJ_PATH)\infblock.obj \
|
||||
$(OBJ_PATH)\inftrees.obj \
|
||||
$(OBJ_PATH)\infcodes.obj \
|
||||
$(OBJ_PATH)\infutil.obj \
|
||||
$(OBJ_PATH)\inffast.obj
|
||||
|
||||
$(OBJ_PATH)\adler32.obj: adler32.c
|
||||
|
||||
$(OBJ_PATH)\compress.obj: compress.c
|
||||
|
||||
$(OBJ_PATH)\crc32.obj: crc32.c
|
||||
|
||||
$(OBJ_PATH)\gzio.obj: gzio.c
|
||||
|
||||
$(OBJ_PATH)\uncompr.obj: uncompr.c
|
||||
|
||||
$(OBJ_PATH)\deflate.obj: deflate.c
|
||||
|
||||
$(OBJ_PATH)\trees.obj: trees.c
|
||||
|
||||
$(OBJ_PATH)\zutil.obj: zutil.c
|
||||
|
||||
$(OBJ_PATH)\inflate.obj: inflate.c
|
||||
|
||||
$(OBJ_PATH)\infblock.obj: infblock.c
|
||||
|
||||
$(OBJ_PATH)\inftrees.obj: inftrees.c
|
||||
|
||||
$(OBJ_PATH)\infcodes.obj: infcodes.c
|
||||
|
||||
$(OBJ_PATH)\infutil.obj: infutil.c
|
||||
|
||||
$(OBJ_PATH)\inffast.obj: inffast.c
|
||||
|
||||
!include ..\makelib.b32
|
Reference in New Issue
Block a user