#
# Makefile for Server on the Atari ST using Mark Williams C
#
SRC=.
CC=cc -DACC
CFLAGS=-I.

OBJS=	recorder.o

recorder.acc:	$(OBJS)
		$(CC) -VGEMACC -o recorder.acc $(OBJS)
 
recorder.o: $(SRC)\recorder.c


