objects = hello.o

hello : $(objects)
	C:/cygwin/bin/g++ -o -g "C:\eclipse\workspace\HelloWorldWithMake\hello" $(objects)
    
$(objects) : hello.cpp
	C:/cygwin/bin/g++.exe -g -c "C:\eclipse\workspace\HelloWorldWithMake\hello.cpp"
	
hello.cpp :
	C:/cygwin/bin/g++.exe -g -c "C:\eclipse\workspace\HelloWorldWithMake\hello.cpp"
	
all :
	${MAKE} objects
	
.PHONY : clean
clean :
	-del hello.exe $(objects)

