diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-09-14 20:56:55 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-09-14 20:56:55 +0000 |
commit | 2958bf7271564092b57e412b4e8fc27355a32761 (patch) | |
tree | 4b1b0eb5b9528d7bbff4180ba5ae17af213d4064 /Makefile | |
parent | cfe37dab8c2a2bdecaacc64253dfb367a9895323 (diff) |
removed MinGW CPU flags so it'll build on MinGW64 by default
svn path=/trunk/externals/template/; revision=14140
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -## Pd library template version 1.0.4 +## Pd library template version 1.0.5 # For instructions on how to use this template, see: # http://puredata.info/docs/developer/MakefileTemplate LIBRARY_NAME = template @@ -140,7 +140,7 @@ ifeq (MINGW,$(findstring MINGW,$(UNAME))) EXTENSION = dll OS = windows PD_PATH = $(shell cd "$(PROGRAMFILES)"/pd && pwd) - OPT_CFLAGS = -O3 -funroll-loops -fomit-frame-pointer -march=i686 -mtune=pentium4 + OPT_CFLAGS = -O3 -funroll-loops -fomit-frame-pointer CFLAGS += -mms-bitfields LDFLAGS += -s -shared -Wl,--enable-auto-import LIBS += -L"$(PD_PATH)/src" -L"$(PD_PATH)/bin" -L"$(PD_PATH)/obj" -lpd -lwsock32 -lkernel32 -luser32 -lgdi32 |