You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # $Id: $
-
- if USE_DOTNET
- noinst_DATA = libCucul.dll libCaca.dll test.exe
- endif
-
- EXTRA_DIST = AssemblyInfo.cs \
- Cucul.cs \
- Caca.cs \
- libCucul.dll.config \
- libCaca.dll.config \
- test.cs
-
- libCucul.dll: AssemblyInfo.cs Cucul.cs
- gmcs $^ -out:$@ -target:library -unsafe
-
- libCaca.dll: AssemblyInfo.cs Caca.cs
- gmcs $^ -out:$@ -target:library -r:./libCucul.dll -lib:./ -unsafe
-
- test.exe: test.cs libCaca.dll libCucul.dll
- gmcs test.cs -out:$@ -r:./libCucul.dll -r:./libCaca.dll -lib:./ -unsafe
-
- clean-local:
- rm -f *.exe *.dll
|