# Memory model
MEMMOD = -mx
#								SCOT Makef
# macros defined in toplevel csound/Makefile
#	CFLAGS DESTDIR INCLUDE LIBLIB
# CFLAGS may be redefined here
CFLAGS = -DSFIRCAM -I$(INCLUDE)\csound -O -w
DESTDIR = e:\csound\beta386
ZIP = zip

O = ..\..

OBJS = main.obj $O\scot.obj

scots:	scot.exe

scot.exe:	$(OBJS)
	ztc $(MEMMOD) -oscot $(OBJS) x32v.lib

main.obj:	main.c
	ztc $(MEMMOD) $(CFLAGS) -c main.c

install:	scot.exe
		$(ZIP) $(DESTDIR)\cs386 scot.exe

clean:
		-del scot.exe
		-del *.obj

