$(exe): $(obs)
- strip --strip-debug $(STABLEOBS)
+ $(STRIPDEBUG) $(STABLEOBS)
$(CXX) -o $@ $^ $(LOADLIBES)
all: kompijl doc
+win32: # value of $(OSTYPE) on windhoos; "make $OSTYPE" if u use bash :-)
+ $(MAKE) -C . CXX=g++
+
doc:
$(MAKE) -C Documentation doc
+pl 29
+ - multiplatform Makefile
+ - context errors: bugfixes
+
pl 28
Internal
+# version info
+MAJVER=0
+MINVER=0
+PATCHLEVEL=29
+include Site.make
####
#### USER CONFIGURABLE
####
-# version info
-MAJVER=0
-MINVER=0
-PATCHLEVEL=28
VERSION=$(MAJVER).$(MINVER).$(PATCHLEVEL)
CXXVER=`$(CXX) --version`
depfile=deps/$(subst .o,.dep,$(notdir $@))
DODEP=rm -f $(depfile); DEPENDENCIES_OUTPUT="$(depfile) $(OBJECTDIR)/$(notdir $@)"
+STRIPDEBUG=strip --strip-debug
\ No newline at end of file
PREFIX=${PREFIX:-.}
echo using PREFIX=$PREFIX
-NEEDFLOWERVER=1.0.24
+NEEDFLOWERVER=1.0.25
flowertar=flower-$NEEDFLOWERVER
here=`pwd`
cd ..
cd $here
echo '#define LIBDIR "'$PREFIX'/"'> hdr/config.hh
-
+touch Site.make
make -f Initial.make
Real distance;
Real strength;
/****************/
+ Spacing_req();
REQUESTMETHODS(Spacing_req, spacing);
};
score {
staff { melodic
+
+ % every "music {} " in a staff has its own "voicegroup"
music { dux }
music { comes }
Symbol
Lookup::stem(Real y1,Real y2)
{
- assert(y1 <= y2);
+ if (y1 > y2) {
+ Real t = y1;
+ y1 = y2;
+ y2 = t;
+ }
Symbol s;
s.dim.x = Interval(0,0);