]> git.saurik.com Git - wxWidgets.git/commitdiff
update to make digitalmars compile/link image sample
authorChris Elliott <biol75@york.ac.uk>
Thu, 24 Apr 2003 21:02:07 +0000 (21:02 +0000)
committerChris Elliott <biol75@york.ac.uk>
Thu, 24 Apr 2003 21:02:07 +0000 (21:02 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20333 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/jpeg/makefile.sc [new file with mode: 0644]
src/png/makefile.sc [new file with mode: 0644]
src/regex/makefile.sc [new file with mode: 0644]
src/tiff/makefile.sc [new file with mode: 0644]
src/zlib/makefile.sc [new file with mode: 0644]

diff --git a/src/jpeg/makefile.sc b/src/jpeg/makefile.sc
new file mode 100644 (file)
index 0000000..49ddf8e
--- /dev/null
@@ -0,0 +1,67 @@
+##############################################################################
+# Name:                        src/jpeg/makefile.sc
+# Purpose:             build jpeg Digital Mars 8.33 compiler
+# Author:              Chris Elliott
+# Created:             21.01.03
+# RCS-ID:              $Id$
+# Licence:             wxWindows licence
+##############################################################################
+
+WXDIR = ..\..
+
+include $(WXDIR)\src\makesc.env
+
+LIBTARGET=$(WXDIR)\lib\jpeg$(SC_SUFFIX).lib
+THISDIR=$(WXDIR)\src\jpeg
+
+# variables
+OBJECTS = \
+        $(THISDIR)\jcomapi.obj \
+        $(THISDIR)\jutils.obj \
+        $(THISDIR)\jerror.obj \
+        $(THISDIR)\jmemmgr.obj \
+        $(THISDIR)\jmemnobs.obj \
+        $(THISDIR)\jcapimin.obj \
+        $(THISDIR)\jcapistd.obj \
+        $(THISDIR)\jctrans.obj \
+        $(THISDIR)\jcparam.obj \
+        $(THISDIR)\jdatadst.obj \
+        $(THISDIR)\jcinit.obj \
+        $(THISDIR)\jcmaster.obj \
+        $(THISDIR)\jcmarker.obj \
+        $(THISDIR)\jcmainct.obj \
+        $(THISDIR)\jcprepct.obj \
+        $(THISDIR)\jccoefct.obj \
+        $(THISDIR)\jccolor.obj \
+        $(THISDIR)\jcsample.obj \
+        $(THISDIR)\jchuff.obj \
+        $(THISDIR)\jcphuff.obj \
+        $(THISDIR)\jcdctmgr.obj \
+        $(THISDIR)\jfdctfst.obj \
+        $(THISDIR)\jfdctflt.obj \
+        $(THISDIR)\jfdctint.obj \
+        $(THISDIR)\jdapimin.obj \
+        $(THISDIR)\jdapistd.obj \
+        $(THISDIR)\jdtrans.obj \
+        $(THISDIR)\jdatasrc.obj \
+        $(THISDIR)\jdmaster.obj \
+        $(THISDIR)\jdinput.obj \
+        $(THISDIR)\jdmarker.obj \
+        $(THISDIR)\jdhuff.obj \
+        $(THISDIR)\jdphuff.obj \
+        $(THISDIR)\jdmainct.obj \
+        $(THISDIR)\jdcoefct.obj \
+        $(THISDIR)\jdpostct.obj \
+        $(THISDIR)\jddctmgr.obj \
+        $(THISDIR)\jidctfst.obj \
+        $(THISDIR)\jidctflt.obj \
+        $(THISDIR)\jidctint.obj \
+        $(THISDIR)\jidctred.obj \
+        $(THISDIR)\jdsample.obj \
+        $(THISDIR)\jdcolor.obj \
+        $(THISDIR)\jquant1.obj \
+        $(THISDIR)\jquant2.obj \
+        $(THISDIR)\jdmerge.obj 
+
+include $(WXDIR)\src\makelib.sc
+
diff --git a/src/png/makefile.sc b/src/png/makefile.sc
new file mode 100644 (file)
index 0000000..23c5a20
--- /dev/null
@@ -0,0 +1,35 @@
+##############################################################################
+# Name:                        src/png/makefile.sc
+# Purpose:             build png Digital Mars 8.33 compiler
+# Author:              Chris Elliott
+# Created:             21.01.03
+# RCS-ID:              $Id$
+# Licence:             wxWindows licence
+##############################################################################
+
+WXDIR = ..\..
+include $(WXDIR)\src\makesc.env
+LIBTARGET=$(WXDIR)\lib\png$(SC_SUFFIX).lib
+THISDIR=$(WXDIR)\src\png
+
+# variables
+OBJECTS = \
+        $(THISDIR)\png.obj \
+        $(THISDIR)\pngread.obj \
+        $(THISDIR)\pngrtran.obj \
+        $(THISDIR)\pngrutil.obj \
+        $(THISDIR)\pngpread.obj \
+        $(THISDIR)\pngtrans.obj \
+        $(THISDIR)\pngwrite.obj \
+        $(THISDIR)\pngwtran.obj \
+        $(THISDIR)\pngwutil.obj \
+        $(THISDIR)\pngerror.obj \
+        $(THISDIR)\pngmem.obj \
+        $(THISDIR)\pngwio.obj \
+        $(THISDIR)\pngrio.obj \
+        $(THISDIR)\pngget.obj \
+        $(THISDIR)\pngset.obj 
+
+
+include $(WXDIR)\src\makelib.sc\
+
diff --git a/src/regex/makefile.sc b/src/regex/makefile.sc
new file mode 100644 (file)
index 0000000..e2e7983
--- /dev/null
@@ -0,0 +1,25 @@
+##############################################################################
+# Name:                        src/regex/makefile.sc
+# Purpose:             build regex Digital Mars 8.33 compiler
+# Author:              Chris Elliott
+# Created:             21.01.03
+# RCS-ID:              $Id$
+# Licence:             wxWindows licence
+##############################################################################
+
+WXDIR = ..\..
+
+include $(WXDIR)\src\makesc.env
+
+LIBTARGET=$(WXDIR)\lib\regex$(SC_SUFFIX).lib
+THISDIR=$(WXDIR)\src\regex
+
+# variables
+OBJECTS = \
+        $(THISDIR)\regcomp.obj \
+        $(THISDIR)\regexec.obj \
+        $(THISDIR)\regerror.obj \
+        $(THISDIR)\regfree.obj \
+
+include $(WXDIR)\src\makelib.sc
+
diff --git a/src/tiff/makefile.sc b/src/tiff/makefile.sc
new file mode 100644 (file)
index 0000000..b73d481
--- /dev/null
@@ -0,0 +1,54 @@
+##############################################################################
+# Name:                        src/tiff/makefile.sc
+# Purpose:             build tiff Digital Mars 8.33 compiler
+# Author:              Chris Elliott
+# Created:             21.01.03
+# RCS-ID:              $Id$
+# Licence:             wxWindows licence
+##############################################################################
+
+WXDIR = ..\..
+
+include $(WXDIR)\src\makesc.env
+
+LIBTARGET=$(WXDIR)\lib\tiff$(SC_SUFFIX).lib
+THISDIR=$(WXDIR)\src\tiff
+
+# variables
+OBJECTS = \
+        $(THISDIR)\tif_aux.obj \
+               $(THISDIR)\tif_close.obj \
+               $(THISDIR)\tif_codec.obj \
+               $(THISDIR)\tif_compress.obj \
+               $(THISDIR)\tif_dir.obj \
+               $(THISDIR)\tif_dirinfo.obj \
+               $(THISDIR)\tif_dirread.obj \
+               $(THISDIR)\tif_dirwrite.obj \
+               $(THISDIR)\tif_dumpmode.obj \
+               $(THISDIR)\tif_error.obj \
+               $(THISDIR)\tif_fax3.obj \
+               $(THISDIR)\tif_fax3sm.obj \
+               $(THISDIR)\tif_flush.obj \
+               $(THISDIR)\tif_getimage.obj \
+               $(THISDIR)\tif_jpeg.obj \
+               $(THISDIR)\tif_luv.obj \
+               $(THISDIR)\tif_lzw.obj \
+               $(THISDIR)\tif_next.obj \
+               $(THISDIR)\tif_open.obj \
+               $(THISDIR)\tif_packbits.obj \
+               $(THISDIR)\tif_pixarlog.obj \
+               $(THISDIR)\tif_predict.obj \
+               $(THISDIR)\tif_print.obj \
+               $(THISDIR)\tif_read.obj \
+               $(THISDIR)\tif_strip.obj \
+               $(THISDIR)\tif_swab.obj \
+               $(THISDIR)\tif_thunder.obj \
+               $(THISDIR)\tif_tile.obj \
+               $(THISDIR)\tif_version.obj \
+               $(THISDIR)\tif_warning.obj \
+               $(THISDIR)\tif_win32.obj \
+               $(THISDIR)\tif_write.obj \
+               $(THISDIR)\tif_zip.obj \
+
+include $(WXDIR)\src\makelib.sc
+
diff --git a/src/zlib/makefile.sc b/src/zlib/makefile.sc
new file mode 100644 (file)
index 0000000..e34a264
--- /dev/null
@@ -0,0 +1,33 @@
+##############################################################################
+# Name:                        src/zlib/makefile.sc
+# Purpose:             build zlib Digital Mars 8.33 compiler
+# Author:              Chris Elliott
+# Created:             21.01.03
+# RCS-ID:              $Id$
+# Licence:             wxWindows licence
+##############################################################################
+
+WXDIR = ..\..
+include $(WXDIR)\src\makesc.env
+LIBTARGET=$(WXDIR)\lib\zlib$(SC_SUFFIX).lib
+THISDIR=$(WXDIR)\src\zlib
+
+# variables
+OBJECTS = \
+        $(THISDIR)\adler32.obj \
+        $(THISDIR)\compress.obj \
+        $(THISDIR)\crc32.obj \
+        $(THISDIR)\gzio.obj \
+        $(THISDIR)\uncompr.obj \
+        $(THISDIR)\deflate.obj \
+        $(THISDIR)\trees.obj \
+        $(THISDIR)\zutil.obj \
+        $(THISDIR)\inflate.obj \
+        $(THISDIR)\infblock.obj \
+        $(THISDIR)\inftrees.obj \
+        $(THISDIR)\infcodes.obj \
+        $(THISDIR)\infutil.obj \
+        $(THISDIR)\inffast.obj
+
+include $(WXDIR)\src\makelib.sc
+