# Change these to reflect your individual system/tastes
CC = gcc
CCOPTS = -O3 -D__TURBOC__
RM = del *.o

OBJECTS = based.o

target: based

based: $(OBJECTS)
	$(CC) -o based.exe $(OBJECTS)
	$(RM)
based.o: based.c
	$(CC) $(CCOPTS) -c based.c
