Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

12345678910111213141516171819202122232425
  1. # $Id: $
  2. if USE_DOTNET
  3. noinst_DATA = libCucul.dll libCaca.dll test.exe
  4. endif
  5. EXTRA_DIST = AssemblyInfo.cs \
  6. Cucul.cs \
  7. Caca.cs \
  8. libCucul.dll.config \
  9. libCaca.dll.config \
  10. test.cs
  11. libCucul.dll: AssemblyInfo.cs Cucul.cs
  12. gmcs $^ -out:$@ -target:library -unsafe
  13. libCaca.dll: AssemblyInfo.cs Caca.cs
  14. gmcs $^ -out:$@ -target:library -r:./libCucul.dll -lib:./ -unsafe
  15. test.exe: test.cs libCaca.dll libCucul.dll
  16. gmcs test.cs -out:$@ -r:./libCucul.dll -r:./libCaca.dll -lib:./ -unsafe
  17. clean-local:
  18. rm -f *.exe *.dll