mix with c#





    
    .SUFFIXES: .exe .obj .txt .resources .dll .cs
    
    .cpp.obj:
        cl -c -Wall -Od -clr:safe $< @echo

    .cs.obj: 
        csc.exe /out:$@ 
    /t:module /r:MSCorLib.dll $
        
    $(TARGET).exe: $(OBJS)  $(RESOURCES)
        link $(OBJS) /out:$@ $(LOPT) /LTCG /assemblyResource:strings.resources
        @echo