From 67a6fb4532a44c4d503b94811d744ab33f6ed8ff Mon Sep 17 00:00:00 2001 From: Shane Woolcock Date: Thu, 16 Apr 2020 19:52:47 +0930 Subject: [PATCH] Remove Makefile --- Makefile | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 7028aca..0000000 --- a/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -# Makefile for SDL2# -# Written by Ethan "flibitijibibo" Lee - -# Source Lists -SRC = \ - src/SDL2.cs \ - src/SDL2_image.cs \ - src/SDL2_mixer.cs \ - src/SDL2_ttf.cs - -# Targets - -debug: clean-debug - mkdir -p bin/Debug - cp app.config bin/Debug/SDL2-CS.dll.config - mcs /unsafe -debug -out:bin/Debug/SDL2-CS.dll -target:library $(SRC) - -clean-debug: - rm -rf bin/Debug - -release: clean-release - mkdir -p bin/Release - cp app.config bin/Release/SDL2-CS.dll.config - mcs /unsafe -optimize -out:bin/Release/SDL2-CS.dll -target:library $(SRC) - -clean-release: - rm -rf bin/Release - -clean: clean-debug clean-release - rm -rf bin - -all: debug release