diff options
-rw-r--r-- | abstractions/Makefile | 8 | ||||
-rw-r--r-- | abstractions/TODO | 4 | ||||
-rw-r--r-- | externals/Makefile | 3 |
3 files changed, 12 insertions, 3 deletions
diff --git a/abstractions/Makefile b/abstractions/Makefile index af32e0ec..a4f5b8c8 100644 --- a/abstractions/Makefile +++ b/abstractions/Makefile @@ -23,9 +23,11 @@ include $(BUILDLAYOUT_DIR)/Makefile.buildlayout #==============================================================================#
# if your library isn't included in LIB_TARGETS, it won't be built with
-# Pd-extended.
-LIB_TARGETS = gyre keyboardkeys la-kitchen list-abs memento \
-nusmuk nqpoly parazit pddp pixeltango purepd rradical
+# Pd-extended.
+#
+# WARNING! this MUST be all on one line because the automatic package
+# building scripts rely on it being that way.
+LIB_TARGETS = gyre keyboardkeys la-kitchen list-abs memento nusmuk nqpoly parazit pddp pixeltango purepd rradical
# in case anything needs to be compiled or processed somehow before installing
all:
diff --git a/abstractions/TODO b/abstractions/TODO index 8b137891..66c25dee 100644 --- a/abstractions/TODO +++ b/abstractions/TODO @@ -1 +1,5 @@ +- fix up Makefile to use auto _install and _clean target generation, like in + externals/Makefile + + diff --git a/externals/Makefile b/externals/Makefile index 9828c468..a816625f 100644 --- a/externals/Makefile +++ b/externals/Makefile @@ -107,6 +107,9 @@ CXXFLAGS = $(CFLAGS) # if your library isn't included in LIB_TARGETS, it won't be built with # Pd-extended. For libraries that build on all platforms, add them directly # below, otherwise add to the correct platforms below. +# +# WARNING! this MUST be all on one line because the automatic package +# building scripts rely on it being that way. LIB_TARGETS = boids bsaylor buildsrc corelibs creb cxc cyclone ext13 flib freeverb ggee hardware iem_ambi iem_bin_ambi iemlib iemmatrix loaders mapping markex maxlib mjlib motex oscx pddp pdogg pmpd sigpack smlib toxy unauthorized vbap zexy # this is for libraries that don't compile (yet) on all platforms |