123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- include ../../config/.config
- include ../../config/makefile.conf
- include ../../config/makefile.dotnet.conf
- all : sample
- TARGET=../../$(STAGE)/axssl.csharp.exe
- sample : $(TARGET)
- $(TARGET): ../../bindings/csharp/axTLS.cs ../../bindings/csharp/axInterface.cs axssl.cs
- ifdef GO_DOT_NET
- csc.exe /nologo /t:exe /out:"`cygpath -w $@`" $(foreach file, $^, "`cygpath -w $(file)`")
- else
- mcs -out:$@ $^
- endif
- clean::
- -@rm -f $(TARGET)
|