Skip to content

Instantly share code, notes, and snippets.

@crabdancing
Created November 9, 2020 19:29
Show Gist options
  • Save crabdancing/7a16c01f4e35cf73963d4900e052aab7 to your computer and use it in GitHub Desktop.
Save crabdancing/7a16c01f4e35cf73963d4900e052aab7 to your computer and use it in GitHub Desktop.
makefile for compiling standalone C# programs with Mono
CSC = csc
TARGET = main
build: $(TARGET)
$(TARGET): $(TARGET).cs
$(CSC) $(TARGET).cs
clean:
$(RM) $(TARGET).exe
run:
mono $(TARGET).exe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment