SDL2-CS/Makefile

34 lines
643 B
Makefile
Raw Normal View History

2013-04-17 05:53:14 +00:00
# Makefile for SDL2#
# Written by Ethan "flibitijibibo" Lee
# Source Lists
2014-10-07 16:29:29 +00:00
SRC = \
2013-04-17 05:53:14 +00:00
src/SDL2.cs \
2021-12-17 17:57:53 +00:00
src/SDL2_gfx.cs \
2013-04-17 05:53:14 +00:00
src/SDL2_image.cs \
src/SDL2_mixer.cs \
src/SDL2_ttf.cs
# Targets
debug: clean-debug
mkdir -p bin/Debug
2019-10-27 05:31:27 +00:00
cp app.config bin/Debug/SDL2-CS.dll.config
2018-09-10 04:12:13 +00:00
mcs /unsafe -debug -out:bin/Debug/SDL2-CS.dll -target:library $(SRC)
2013-04-17 05:53:14 +00:00
clean-debug:
rm -rf bin/Debug
release: clean-release
mkdir -p bin/Release
2019-10-27 05:31:27 +00:00
cp app.config bin/Release/SDL2-CS.dll.config
2018-09-10 04:12:13 +00:00
mcs /unsafe -optimize -out:bin/Release/SDL2-CS.dll -target:library $(SRC)
clean-release:
rm -rf bin/Release
clean: clean-debug clean-release
2013-04-17 05:53:14 +00:00
rm -rf bin
all: debug release