From 0cc0e72f67a6c22ec668a12c4e7611ea534ddea2 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Wed, 10 Feb 2010 05:16:14 +0000 Subject: updated all templates with the PDOBJECTS fixes from the 'mapping' build svn path=/trunk/externals/sigpack/; revision=13167 --- Makefile | 28 ++++++++++++++-------------- README.txt | 37 +++++++++++++++++++++++++++++++++++++ readme.txt | 37 ------------------------------------- 3 files changed, 51 insertions(+), 51 deletions(-) create mode 100644 README.txt delete mode 100644 readme.txt diff --git a/Makefile b/Makefile index b143ca8..ce2bd50 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ PDOBJECTS = # if you want to include any other files in the source and binary tarballs, # list them here. This can be anything from header files, READMEs, example # patches, documentation, etc. -EXTRA_DIST = readme.txt sigpack.c LICENSE +EXTRA_DIST = README.txt sigpack.c LICENSE #------------------------------------------------------------------------------# @@ -130,7 +130,7 @@ endif CFLAGS += $(OPT_CFLAGS) -.PHONY = install libdir_install single_install install-doc install-exec clean dist etags +.PHONY = install libdir_install single_install install-doc install-exec install-examples clean dist etags all: $(SOURCES:.c=.$(EXTENSION)) @@ -155,11 +155,11 @@ libdir_install: $(SOURCES:.c=.$(EXTENSION)) install-doc install-examples $(INSTALL_DIR) $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME) $(INSTALL_FILE) $(LIBRARY_NAME)-meta.pd \ $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME) - test -z "$(SOURCES)" || (\ + test -z "$(strip $(SOURCES))" || (\ $(INSTALL_FILE) $(SOURCES:.c=.$(EXTENSION)) $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME) && \ $(STRIP) $(addprefix $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME)/,$(SOURCES:.c=.$(EXTENSION)))) - test -z "$(PDOBJECTS)" || \ - $(INSTALL_FILE) $(OBJECTS) \ + test -z "$(strip $(PDOBJECTS))" || \ + $(INSTALL_FILE) $(PDOBJECTS) \ $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME) # install library linked as single binary @@ -170,13 +170,13 @@ single_install: $(LIBRARY_NAME) install-doc install-exec install-doc: $(INSTALL_DIR) $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME) - test -z "$(SOURCES)" || \ + test -z "$(strip $(SOURCES))" || \ $(INSTALL_FILE) $(SOURCES:.c=-help.pd) \ $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME) - test -z "$(PDOBJECTS)" || \ + test -z "$(strip $(PDOBJECTS))" || \ $(INSTALL_FILE) $(PDOBJECTS:.pd=-help.pd) \ $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME) - $(INSTALL_FILE) readme.txt $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME)/readme.txt + $(INSTALL_FILE) README.txt $(DESTDIR)$(objectsdir)/$(LIBRARY_NAME)/README.txt install-examples: test ! -d examples || (\ @@ -203,7 +203,7 @@ libdir: all $(DISTBINDIR) $(INSTALL_FILE) $(LIBRARY_NAME)-meta.pd $(DISTBINDIR) $(INSTALL_FILE) $(SOURCES) $(DISTBINDIR) $(INSTALL_FILE) $(SOURCES:.c=-help.pd) $(DISTBINDIR) - test -z "$(EXTRA_DIST)" || \ + test -z "$(strip $(EXTRA_DIST))" || \ $(INSTALL_FILE) $(EXTRA_DIST) $(DISTBINDIR) # tar --exclude-vcs -czpf $(DISTBINDIR).tar.gz $(DISTBINDIR) @@ -213,15 +213,15 @@ $(DISTDIR): dist: $(DISTDIR) $(INSTALL_FILE) Makefile $(DISTDIR) $(INSTALL_FILE) $(LIBRARY_NAME)-meta.pd $(DISTDIR) - test -z "$(ALLSOURCES)" || \ + test -z "$(strip $(ALLSOURCES))" || \ $(INSTALL_FILE) $(ALLSOURCES) $(DISTDIR) - test -z "$(ALLSOURCES)" || \ + test -z "$(strip $(ALLSOURCES))" || \ $(INSTALL_FILE) $(ALLSOURCES:.c=-help.pd) $(DISTDIR) - test -z "$(PDOBJECTS)" || \ + test -z "$(strip $(PDOBJECTS))" || \ $(INSTALL_FILE) $(PDOBJECTS) $(DISTDIR) - test -z "$(PDOBJECTS)" || \ + test -z "$(strip $(PDOBJECTS))" || \ $(INSTALL_FILE) $(PDOBJECTS:.pd=-help.pd) $(DISTDIR) - test -z "$(EXTRA_DIST)" || \ + test -z "$(strip $(EXTRA_DIST))" || \ $(INSTALL_FILE) $(EXTRA_DIST) $(DISTDIR) tar --exclude-vcs -czpf $(DISTDIR).tar.gz $(DISTDIR) diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..696cf13 --- /dev/null +++ b/README.txt @@ -0,0 +1,37 @@ +sigpack version 0.04 + +signal object library for pure-data + +objects: +sp_chop~ sp_decimate~ sp_diode~ sp_foldback~ sp_foldover~ sp_freqdiv~ +sp_freqshift~ sp_hardlimit~ sp_harmgen~ sp_impulse~ sp_rectify~ sp_round~ sp_saturate~ sp_shape~ sp_sieve~ +sp_split~ sp_transient~ sp_ustep~ sp_valverect~ sp_vowel~ sp_wavewrap~ + +released under the GNU/GPL-license +this is software with absolutely no warranty +use it at your own risk + +contact + + + +-----------------v0.04------------------- +::cleaning up code a bit +::add GNU/GPL license.txt +::new objects: + sp_hardlimit~ sp_impulse~ sp_shape~ sp_transient~ sp_valverect~ sp_wavewrap~ + +-----------------v0.03b------------------ +::change prefix to "sp_", so every extern compiles as single object (for pd-extended) + +-----------------v0.03------------------- +::add prefix "sp." to avoid nameclash +::new objects: + sp_diode~ sp_freqshift~ sp_round~ sp_sieve~ + +-----------------v0.02------------------- +::new objects: + sp_chop~ sp_decimate~ sp_foldover~ sp_freqdiv~ sp_harmgen~ sp_saturate~ sp_vowel~ + +-----------------v0.01------------------- +::initial release \ No newline at end of file diff --git a/readme.txt b/readme.txt deleted file mode 100644 index 696cf13..0000000 --- a/readme.txt +++ /dev/null @@ -1,37 +0,0 @@ -sigpack version 0.04 - -signal object library for pure-data - -objects: -sp_chop~ sp_decimate~ sp_diode~ sp_foldback~ sp_foldover~ sp_freqdiv~ -sp_freqshift~ sp_hardlimit~ sp_harmgen~ sp_impulse~ sp_rectify~ sp_round~ sp_saturate~ sp_shape~ sp_sieve~ -sp_split~ sp_transient~ sp_ustep~ sp_valverect~ sp_vowel~ sp_wavewrap~ - -released under the GNU/GPL-license -this is software with absolutely no warranty -use it at your own risk - -contact - - - ------------------v0.04------------------- -::cleaning up code a bit -::add GNU/GPL license.txt -::new objects: - sp_hardlimit~ sp_impulse~ sp_shape~ sp_transient~ sp_valverect~ sp_wavewrap~ - ------------------v0.03b------------------ -::change prefix to "sp_", so every extern compiles as single object (for pd-extended) - ------------------v0.03------------------- -::add prefix "sp." to avoid nameclash -::new objects: - sp_diode~ sp_freqshift~ sp_round~ sp_sieve~ - ------------------v0.02------------------- -::new objects: - sp_chop~ sp_decimate~ sp_foldover~ sp_freqdiv~ sp_harmgen~ sp_saturate~ sp_vowel~ - ------------------v0.01------------------- -::initial release \ No newline at end of file -- cgit v1.2.1