# makefile for lw/sample/hello
# $Header: /d/1/proj/egypt/1/lw/sample/hello/RCS/makefile,v 1.2 1994/07/23 18:33:32 kudou Exp $

include ../subdir.mk
include $(TOP)/config.mk
include $(TOP)/common.mk

all: hello.exe

hello.exe: hello.cpp hello.def hello.rc
	$(ccwexe)

clean:
	$(RM) hello.exe hello.map hello.obj hello.res

