diff options
author | carmen rocco <ix9@users.sourceforge.net> | 2004-04-07 21:02:53 +0000 |
---|---|---|
committer | carmen rocco <ix9@users.sourceforge.net> | 2004-04-07 21:02:53 +0000 |
commit | 7bf516a7a3136c707de58e94f7b0f7c0cc43ce28 (patch) | |
tree | 7ee25a54ecb2faf3b7bb884fe5d8febd002db36a | |
parent | 7873dd1a71b9eac5f08ef35fd3ce0c844e9a54c8 (diff) |
added windows support
svn path=/trunk/externals/miXed/; revision=1565
-rw-r--r-- | Makefile.common | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile.common b/Makefile.common index 7f88cd1..6fba155 100644 --- a/Makefile.common +++ b/Makefile.common @@ -31,6 +31,14 @@ OPT_CFLAGS = -O6 -funroll-loops -fomit-frame-pointer LFLAGS = -export_dynamic -shared endif +ifeq ($(OS_NAME),MINGW32_NT-5.2) +CC = gcc +X_SUFFIX = dll +DEFINES = -DNT +OPT_CFLAGS = -funroll-loops +LFLAGS = -shared $(PD_DIR)/../bin/pd.dll +endif + ifeq ($(OS_NAME),Darwin) CC = gcc2 X_SUFFIX = pd_darwin |