Update of /cvsroot/pure-data/externals/miXed In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23748
Modified Files: Makefile.common Log Message: cyclone alpha52 and toxy alpha15 (see notes.txt for cyclone, toxy and shared)
Index: Makefile.common =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/Makefile.common,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** Makefile.common 11 Jan 2005 10:33:10 -0000 1.26 --- Makefile.common 27 Jan 2005 14:42:46 -0000 1.27 *************** *** 2,11 **** PD_DIR = $(ROOT_DIR)/../../pd/src
- # remove this restriction LATER, when TCL_LIB is ./configured - ifeq ($(shell whoami),krzYszcz) - # TCL_LIB should be set (or not) before "include Makefile.sources" - TCL_LIB = -l$(shell grep -osm1 'tcl8.[345]' $(PD_DIR)/makefile) - endif - OS_NAME = $(shell uname -s) ifneq ($(OS_NAME),Linux) --- 2,5 ---- *************** *** 23,26 **** --- 17,28 ---- endif
+ MY_NAME = $(shell id -un) + + # remove this restriction LATER, when TCL_LIB is ./configured + ifeq ($(MY_NAME),krzYszcz) + # TCL_LIB should be set (or not) before "include Makefile.sources" + TCL_LIB = -l$(shell grep -osm1 'tcl8.[345]' $(PD_DIR)/makefile) + endif + TILDE = ~
*************** *** 37,41 **** # FIXME strict-aliasing OPT_CFLAGS = -O6 -funroll-loops -fomit-frame-pointer -fno-strict-aliasing ! ifeq ($(shell whoami),krzYszcz) DEFINES = -DUNIX -DKRZYSZCZ else --- 39,43 ---- # FIXME strict-aliasing OPT_CFLAGS = -O6 -funroll-loops -fomit-frame-pointer -fno-strict-aliasing ! ifeq ($(MY_NAME),krzYszcz) DEFINES = -DUNIX -DKRZYSZCZ else *************** *** 99,103 **** INCLUDES = -I. -I$(PD_DIR) -I$(SHARED_DIR)
! ifeq ($(shell whoami),krzYszcz) WARN_CFLAGS = -Wall -W -Wstrict-prototypes -Werror \ -Wno-unused -Wno-parentheses -Wno-switch --- 101,105 ---- INCLUDES = -I. -I$(PD_DIR) -I$(SHARED_DIR)
! ifeq ($(MY_NAME),krzYszcz) WARN_CFLAGS = -Wall -W -Wstrict-prototypes -Werror \ -Wno-unused -Wno-parentheses -Wno-switch *************** *** 214,218 ****
define_build: ! @if [[ -f build_counter && `whoami` == krzYszcz && \ `date -r build_counter +%j` != `date +%j` ]] ; then \ mv build_counter build_counter~ ; \ --- 216,220 ----
define_build: ! @if [[ -f build_counter && `id -un` == krzYszcz && \ `date -r build_counter +%j` != `date +%j` ]] ; then \ mv build_counter build_counter~ ; \