# NMAKE Makefile Created by CMAKE 100
# D. Feinleib 3/18/92
# Windows NT


# I have modified ntwin32.mak to allow it to include or not include
# debug info, based on this switch
NODEBUG=1

# Nmake macros for building Windows NT applications
!include <ntwin32.mak>

PROJ=mem
OBJ=mem.obj 

all : mem.exe

mem.obj : mem.c
    $(cc) $(cflags) $(cvars) mem.c
    $(cvtobj) mem.obj

mem.exe : $(OBJ)
    $(link) $(conflags) -out:$(PROJ).exe $(OBJ) $(conlibs)
