#   This is a rather simple Makefile. You must change the CC, LIBS and FLAGS
#   definitions to use your prefered C-Compiler. For example you must tell
#   gcc where to find the os-includes. Change the inc: after -I to the place
#   where your Amiga includes reside.

SC	    =	    sc
DCC	    =	    dcc
GCC	    =	    gcc

SCLIBS	    =	    link
DCCLIBS     =	    -lc
GCCLIBS     =	    -lamy

SCFLAGS     =	    opt optglo optsize
DCCFLAGS    =	    -O2 -o resize
GCCFLAGS    =	    -O2 -o resize -Iinc:

CC	    =	    $(SC)
LIBS	    =	    $(SCLIBS)
FLAGS	    =	    $(SCFLAGS)

resize: resize.c
	 $(CC) $(FLAGS) resize.c $(LIBS)

