Test.dll: Personne.netmodule Client.cs
	csc /t:library /addmodule:Personne.netmodule /out:Test.dll Client.cs

Personne.netmodule: Personne.cs
	csc /t:module Personne.cs


clean:
	@for %e in (dll exe netmodule) do @if exist *.%e del *.%e
