#
# makefile for whelp
#

OBJECTS	= whelp.obj

whelp.exe : $(OBJECTS) whelp.def
	link /ON:N $(OBJECTS), /A:16, NUL, /NOD llibcew libw commdlg $(LIBS), whelp.def
	rc whelp.exe

.c.obj:
	cl -c $(CFLAGS) -ALw -Gsw -Ow -W4 $*.c

#
# ctags target
#

ctags :
	ctags *.c *.h
