#/*
# * Copyright (c) Chris Wohlgemuth 2002 
# * All rights reserved.
# *
# * http://www.geocities.com/SiliconValley/Sector/5785/
# * http://www.os2world.com/cdwriting
# *
# * Redistribution and use in source and binary forms, with or without
# * modification, are permitted provided that the following conditions
# * are met:
# * 1. Redistributions of source code must retain the above copyright
# *    notice, this list of conditions and the following disclaimer.
# * 2. Redistributions in binary form must reproduce the above copyright
# *    notice, this list of conditions and the following disclaimer in the
# *    documentation and/or other materials provided with the distribution.
# * 3. The authors name may not be used to endorse or promote products
# *    derived from this software without specific prior written permission.
# *
# * THIS SOFTWARE IS PROVIDED ``AS IS'' AND
# * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
# * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# * SUCH DAMAGE.
# *
# */
#################################################################################
#
# Makefile for JPG IOProc
#
#   Generates
#         JPEGIO.dll       - JPG Image IOproc
#
# Copyright Chris Wohlgemuth 2002
#
# http://www.os2world.com/cdwriting
# http://www.geocities.com/SiliconValley/Sector/5785/
#
# Use VAC++ V3.08 and gmake to compile
#
#################################################################################

.SUFFIXES: .exe .obj .asm .inc .def .lrf .lst .sym .map .c .h .lib .dlg .txt .cod  \
           .res .rc .l$(LANG) .dll


#################################
CC=icc
CFLAGS       =   -Ge- /Gm+ -G4 /ss -Gl /O+ -Oc+ -Ol- /Q+ /C

#################################
# Definitions for linker
# LIBRARIES:
#  MMPM2  == MMPM2 Library
#################################
MAPSYM=mapsym
LIBS=	MMPM2.LIB GBM.LIB
LDFLAGS =	-Ge- /Gm+ -G4 /ss -Gl /O+ -Oc+ -Ol-  /Q+ /B"/NOE"


#################################
# Object file lists
#################################
OBJS =	jpgproc.obj jpgfunc.obj

#################################
# Target Descriptions
#################################
all:	JPEGIO.DLL 
#iotest.exe 


iotest.exe:	iotest.c
	icc iotest.c $(LIBS)

JPEGIO.DLL:		$(OBJS)
	$(CC) $(LDFLAGS)  /Fm$(basename $@) /Fe$@  $(OBJS) $(LIBS) JPEGIO.def
	rc JPGproc.rc JPEGIO.dll
	mapsym JPEGIO.map



jpgproc.obj:	jpgproc.c
	$(CC) $(CFLAGS) /Fo$@ $<

jpgfunc.obj:	jpgfunc.c
	$(CC) $(CFLAGS) /Fo$@ $<

clean:
	-del *.obj
	-del *.dll
	-del *.res
	-del *.*~
	-del *.map
	-del *.sym