diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-07-26 02:11:08 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-07-26 02:11:08 +0000 |
commit | 835a4395daba462ac64718ac794eaffe1ecd5ff3 (patch) | |
tree | 5ceb715c97bdb80fc1d7ff1c332c7d96d222182a | |
parent | ed70def05a21edbcc887acf75ae9a8e2d9e896bd (diff) |
renamed var PROGRAMFILES to ProgramFiles since some IDEs are case sensitive for env vars, tho Windows is usually not
svn path=/trunk/externals/template/; revision=15164
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -## Pd library template version 1.0.9 +## Pd library template version 1.0.10 # For instructions on how to use this template, see: # http://puredata.info/docs/developer/MakefileTemplate LIBRARY_NAME = template @@ -178,7 +178,7 @@ ifeq (CYGWIN,$(findstring CYGWIN,$(UNAME))) SOURCES += $(SOURCES_cygwin) EXTENSION = dll OS = cygwin - PD_PATH = $(cygpath $(PROGRAMFILES))/pd + PD_PATH = $(cygpath $(ProgramFiles))/pd OPT_CFLAGS = -O6 -funroll-loops -fomit-frame-pointer CFLAGS += LDFLAGS += -Wl,--export-dynamic -shared -L"$(PD_PATH)/src" -L"$(PD_PATH)/bin" @@ -191,7 +191,7 @@ ifeq (MINGW,$(findstring MINGW,$(UNAME))) SOURCES += $(SOURCES_windows) EXTENSION = dll OS = windows - PD_PATH = $(shell cd "$(PROGRAMFILES)"/pd && pwd) + PD_PATH = $(shell cd "$(ProgramFiles)"/pd && pwd) # MinGW doesn't seem to include cc so force gcc CC=gcc OPT_CFLAGS = -O3 -funroll-loops -fomit-frame-pointer |