.AUTODEPEND
##
## FULLROT Makefile
## ================
## Copyright 1994, by Scott A. Deming -- All Rights Reserved!
##
## This is public domain. :)  Why copyright it then?  I have no idea.
##

.c.obj:
  $(CC) -c $(CFLAGS) {$< }

.asm.obj:
  $(ASM) $(AFLAGS) {$< }

INCLUDE = c:\borlandc\include
LIB = c:\borlandc\lib

CC = bcc
ASM = tasm

CFLAGS = -w -w-sig -ff- -ml -v -c -B -3 -I$(INCLUDE)

AFLAGS = /uM510 /m5

OBJ =   fullrot.obj                                                         \
        gfxpcx.obj      gfxpal.obj      gfxmath.obj                         \

fullrot: $(OBJ)
    tlink /v/n/c/P-/3/L$(LIB) @fullrot.lnk

clean:
    del *.obj
    del *.exe
    del *.bak
    del *.map

fresh:
    make clean
    make fullrot
