# Makefile for hello 
CC=..\..\bin\lcc
CFLAGS	=	-O -g2 -A -I..\..\include

OBJS	=	hello.obj 

hello.exe:	$(OBJS)
	f:\lcc\lcclnk\lcclnk -o hello.exe  $(OBJS)


