diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-10-03 03:09:07 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-10-03 03:09:07 +0000 |
commit | 2908c43f81eb0f10f733d584cc8fc155de978ad4 (patch) | |
tree | 8c81203bcc5a1981ce282d2804219c93d32062a3 /Makefile | |
parent | 4a5989588dfe6bcf7893d4846419a782dabdf618 (diff) |
fixed typo and set version to 1.0.11
svn path=/trunk/externals/template/; revision=15468
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -## Pd library template version 1.0.10 +## Pd library template version 1.0.11 # For instructions on how to use this template, see: # http://puredata.info/docs/developer/MakefileTemplate LIBRARY_NAME = template @@ -344,8 +344,8 @@ dist: $(DISTDIR) $(INSTALL_DATA) $(LIBRARY_NAME)-meta.pd $(DISTDIR) test -z "$(strip $(ALLSOURCES))" || \ $(INSTALL_DATA) $(ALLSOURCES) $(DISTDIR) - test -z "$(strip $(wildcard $(ALLSOURCES:.c=tcl)))" || \ - $(INSTALL_DATA) $(wildcard $(ALLSOURCES:.c=tcl)) $(DISTDIR) + test -z "$(strip $(wildcard $(ALLSOURCES:.c=.tcl)))" || \ + $(INSTALL_DATA) $(wildcard $(ALLSOURCES:.c=.tcl)) $(DISTDIR) test -z "$(strip $(SHARED_HEADER))" || \ $(INSTALL_DATA) $(SHARED_HEADER) $(DISTDIR) test -z "$(strip $(SHARED_SOURCE))" || \ |