diff options
author | Wohlstand <admin@wohlnet.ru> | 2015-10-10 01:51:33 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2015-10-10 01:51:33 +0300 |
commit | 90e3c6f54fddf8762f7349414211a8c0f94bf594 (patch) | |
tree | 6813c1945c818adf6cedced3636b3a21323aee47 /Makefile | |
parent | 571514976097951a087ccd05086c4bc99a9af23c (diff) | |
download | libADLMIDI-90e3c6f54fddf8762f7349414211a8c0f94bf594.tar.gz libADLMIDI-90e3c6f54fddf8762f7349414211a8c0f94bf594.tar.bz2 libADLMIDI-90e3c6f54fddf8762f7349414211a8c0f94bf594.zip |
Initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ff9f102 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +#CXX=i686-w64-mingw32-g++ -static +CXX=g++ +CXXLINK=$(CXX) +MKDIR=mkdir -p +RM=rm +RM_F=rm -Rf + +#DEBUG=-O0 -fno-inline -D_GLIBCXX_DEBUG -g -fstack-protector-all -fdata-sections + +DEBUG=-Ofast -g + +#DEBUG += -fno-tree-vectorize + +# -march=pentium -mno-sse -mno-sse2 -mno-sse3 -mmmx + +CPPFLAGS += -DLIBADLMIDI_VISIBILITY + +CPPFLAGS += -std=c++11 -pedantic -Wall -Wextra + +include make.rules + |