# Makefile for Independent JPEG Group's software

# This makefile is for Amiga systems using SAS C 6.0 and up.
# Thanks to Ed Hanway, Mark Rinfret, and Jim Zepeda.

# modified by Andreas R. Kleinert for use with superview.library (AMIGA)

# Read installation instructions before saying "make" !!

# The name of your C compiler:
CC= SC

SUFFIX=

CFLAGS=

# see SCOPTIONS for more flags

# Link-time cc options:
LDFLAGS= SC SD ND BATCH

# To link any special libraries, add the necessary commands here.
LDLIBS= LIB:sc.lib LIB:scmffp.lib

# miscellaneous OS-dependent stuff
# linker
LN= slink
# file deletion command
RM= delete quiet
# library (.lib) file creation command
AR= oml

# End of configurable options.

# source files: JPEG library proper
LIBOBJECTS= exif-mnote-data-canon.o mnote-canon-tag.o mnote-canon-entry.o

all: libcanon.lib

libcanon.lib: $(LIBOBJECTS)
        -$(RM) libcanon.lib
        $(AR) libcanon.lib r $(LIBOBJECTS)

clean:
        -$(RM) libcanon.lib core testout*.*
