##
##	Find - AmigaDOS 2.04 commodities utility
##
##	Copyright © 1991-1992 by Olaf `Olsen' Barthel
##		All Rights Reserved
##

.c.o:
	LC $(CFLAGS) $*.c

.asm.o:
	ASM -IASM: $*.asm

CFLAGS		= -cmiqws -b1 -r1 -v -j89 -mt0 -HFind.SYM
LFLAGS		= SC SD ND DEFINE __main=__tinymain

LIBS		= LIB:lc.lib LIB:amiga2.0.lib

OBJS		= Find.o Identify.o FindData.o Format.o QuickSort.o

all:		Find.SYM Find

Find:		$(OBJS)
		BLINK LIB:c.o $(OBJS) TO Find LIB $(LIBS) $(LFLAGS)

Find.SYM:	PreInclude.c
		LC -cimqws -ph -oFind.SYM PreInclude.c
