# Nmake macros for building Windows 32-Bit apps
DLL_SWITCH=NO_DLL
!include <ntwin32.mak>

# This line allows NMAKE to work as well

all: brace.exe help.exe

# Update the object files if necessary

lex_yy.obj: lex_yy.c
    $(cc) $(cflags) $(cvars) $(*B).c

brace.obj: brace.c
    $(cc) $(cflags) $(cvars) $(*B).c


brace.exe: brace.obj 
    $(link) $(conflags) -out:brace.exe brace.obj $(conlibs)

help.exe: lex_yy.obj
    $(link) $(conflags) -out:help.exe lex_yy.obj lexlib.lib $(conlibs)


