#
#  Make file for BASE files
#
lib=c:\windev\lib
include=c:\windev\include

# ---- Compiler & Linker options ----
clopts=-c -Gsw -W2 -Zip -Od
linkopts= /align:16 /NOD /NOE /CO

# ---- Actual build dependencies ----
base.res: base.rc base.h
    rc -r base.rc

base.obj: base.c base.h
    cl $(clopts) base.c

base.exe: base.obj base.def base.res
    link $(linkopts) base, base, NUL, GENLIB slibcew libw, base
    rc base.res
