# Makefile for 5in1 program and Borland C++ BCC

# Normal compilation
CC = BCC -c -ms    -W $<
TC = /Tw /x /n /c c0ws

# Source level debugging
CD = BCC -c -ms -v -W $<
TD = /Tw /v /n /c c0ws

5in1.exe: 5in1.obj 5in1.def 5in1.res
    tlink $(TD) 5in1,\
          5in1,\
          NUL,\
          cwins cs import,\
          5in1
    rc 5in1.res

.c.obj :
    $(CD)

.rc.res :
    rc -r $<
