all : lib app
test : all
	@ReflectionTest.exe

lib : Hello.dll
app : ReflectionTest.exe
clean :
	del *.dll *.exe

Hello.dll : Hello.cs
	csc /t:library Hello.cs

ReflectionTest.exe : ReflectionTest.cs
	csc ReflectionTest.cs
