From fa1ab26cfed071714d4013fc887f412c8f772439 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sat, 4 Sep 2004 08:52:10 +0000 Subject: [PATCH] Removing a bunch of files: Makefiles, CVS ignore files, compiled python files --- src/.cvsignore | 4 - src/Makefile | 12 -- src/Makefile.include | 204 -------------------------- src/common/attributes/.cvsignore | 3 - src/common/gamecode/.cvsignore | 3 - src/common/items/.cvsignore | 3 - src/common/kernel/.cvsignore | 3 - src/common/modules/.cvsignore | 3 - src/common/races/.cvsignore | 3 - src/common/spells/.cvsignore | 3 - src/common/triggers/.cvsignore | 3 - src/common/util/.cvsignore | 3 - src/corwin.mk | 49 ------- src/corwin@amber.mk | 49 ------- src/corwin@liarana.mk | 49 ------- src/enno.mk | 14 -- src/eressea/.cvsignore | 6 - src/eressea@amber.mk | 49 ------- src/katze.mk | 51 ------- src/mapper/.cvsignore | 3 - src/marquardt.mk | 23 --- src/tools/prototype-advance/Graph.pyc | Bin 3389 -> 0 bytes src/tools/prototype-advance/Stack.pyc | Bin 259 -> 0 bytes 23 files changed, 540 deletions(-) delete mode 100644 src/.cvsignore delete mode 100644 src/Makefile delete mode 100644 src/Makefile.include delete mode 100644 src/common/attributes/.cvsignore delete mode 100644 src/common/gamecode/.cvsignore delete mode 100644 src/common/items/.cvsignore delete mode 100644 src/common/kernel/.cvsignore delete mode 100644 src/common/modules/.cvsignore delete mode 100644 src/common/races/.cvsignore delete mode 100644 src/common/spells/.cvsignore delete mode 100644 src/common/triggers/.cvsignore delete mode 100644 src/common/util/.cvsignore delete mode 100644 src/corwin.mk delete mode 100644 src/corwin@amber.mk delete mode 100644 src/corwin@liarana.mk delete mode 100644 src/enno.mk delete mode 100644 src/eressea/.cvsignore delete mode 100644 src/eressea@amber.mk delete mode 100644 src/katze.mk delete mode 100644 src/mapper/.cvsignore delete mode 100644 src/marquardt.mk delete mode 100644 src/tools/prototype-advance/Graph.pyc delete mode 100644 src/tools/prototype-advance/Stack.pyc diff --git a/src/.cvsignore b/src/.cvsignore deleted file mode 100644 index 3621ecd4a..000000000 --- a/src/.cvsignore +++ /dev/null @@ -1,4 +0,0 @@ -*.log -*.ncb -*.opt -*.suo diff --git a/src/Makefile b/src/Makefile deleted file mode 100644 index 482691a93..000000000 --- a/src/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -TARGETS = subdirs - -SUBDIRS = \ - common \ - eressea \ - mapper - -# askalon - -include Makefile.include - -## more definitions diff --git a/src/Makefile.include b/src/Makefile.include deleted file mode 100644 index c0a4a1347..000000000 --- a/src/Makefile.include +++ /dev/null @@ -1,204 +0,0 @@ -## include this File in all Makefiles for Eressea - -ifndef ERESSEA_SRC - export ERESSEA_SRC=$(PWD) -endif - -.PHONY: tags - -default: debug - -DEPEND = @gcc -MM -MG -r -AR = @ar -CTAGS = ctags-exuberant -CC = @gcc -LD = @gcc -INSTALL = @cp -#INSTALL = install - - -ARFLAGS = crs -CTAGSFLAGS = --c-types=cdefgmnstuv -CFLAGS = -I$(ERESSEA_SRC) -Wall -Wwrite-strings -Wstrict-prototypes \ - -Werror-implicit-function-declaration \ - -Wno-char-subscripts $(INCLUDES) -LDFLAGS = $(LIBS) - -LIBS = -L$(PUBLISH_DIR) - -LINTFLAGS = -booltype boolean -boolops +posixlib +matchanyintegral \ - -predboolint -retvalint -retvalother -realcompare -exportlocal \ - -DHAVE_READDIR - -ARCHITECTURE = Linux - -## -## Default-Strings. Können in $(USER).mk überschrieben werden -## -MSG_COMPILE = "---> Compiling $@" -MSG_SUBDIR = "--> Making $@ in $$subdir" - -## -## user-defined makefiles -## - -MKFILES = $(wildcard $(ERESSEA_SRC)/$(USER)@$(HOST).mk $(ERESSEA_SRC)/$(OSTYPE).mk $(ERESSEA_SRC)/$(HOSTTYPE).mk $(ERESSEA_SRC)/$(ARCH).mk) -ifeq ($(MKFILES), ) -else - include $(MKFILES) -endif - - -## -## Architecture-Dependent Exe and Library Names -## - -ifeq ($(ARCHITECTURE), Linux) - ifneq ($(LIBNAME), ) - LIBRARY = lib$(LIBNAME).a - endif - ifneq ($(EXENAME), ) - BINARY = $(EXENAME) - endif -endif - -ifeq ($(ARCHITECTURE), Windows) - ifneq ($(LIBNAME), ) - LIBRARY = $(LIBNAME).lib - endif - ifneq ($(EXENAME), ) - BINARY = $(EXENAME).exe - endif -endif - -ifeq ($(CONFIG), debug) - BUILD_DIR = Debug-$(ARCHITECTURE) - CFLAGS += -ggdb - LDFLAGS += -ggdb -endif - -ifeq ($(CONFIG), release) - BUILD_DIR = Release-$(ARCHITECTURE) - CFLAGS += -O4 -DNDEBUG -funroll-loops -fomit-frame-pointer -ggdb - LDFLAGS += -ggdb -endif - -ifeq ($(CONFIG), profile) - BUILD_DIR = Profile-$(ARCHITECTURE) - CFLAGS += -ggdb -pg -O4 -funroll-loops - LDFLAGS += -ggdb -pg -endif - -ifeq ($(CONFIG), dmalloc) - BUILD_DIR = Dmalloc-$(ARCHITECTURE) - CFLAGS += -ggdb -DDMALLOC - LDFLAGS += -ggdb - LIBS += -ldmalloc -endif - -ifeq ($(CONFIG), ccmalloc) - BUILD_DIR = Ccmalloc-$(ARCHITECTURE) - CFLAGS += -ggdb - LDFLAGS += -ggdb - LD = ccmalloc gcc -endif - -# ifeq ($(CONFIG), lint) -# BUILD_DIR = Lint-$(ARCHITECTURE) -# CC = lint -# CFLAGS = -I$(ERESSEA_SRC) $(INCLUDES) -booltype boolean -boolops -# LDFLAGS = -# LIBS = -# endif - - -# -## Dependencies -# -ifneq ($(wildcard *.c),) -ifeq (.depend,$(wildcard .depend)) -include .depend -endif -# Create dependencies -depend:: $(SOURCES) - @echo "Creating dependencies in `pwd`/.depend"; - @$(DEPEND) $(CFLAGS) $(DEFINES) $(INCDIRS) $(SOURCES) >| .depend - @perl -pe 's/(.*\.o)/Debug-$(ARCHITECTURE)\/\1 Release-$(ARCHITECTURE)\/\1/' -i .depend -endif - - -# -## Tags -# -tags: - @echo "Creating tags in `pwd`/tags"; - $(CTAGS) $(CTAGSFLAGS) --recurse=yes -f $(ERESSEA_SRC)/tags $(ERESSEA_SRC) - - -PUBLISH_DIR = $(ERESSEA_SRC)/$(BUILD_DIR) - -env: - @$(MAKEENV) - -debug release profile dmalloc ccmalloc:: env $(PUBLISH_DIR) $(PUBLISH_DIR) - $(MAKE) CONFIG=$@ recurse-subdirs-$@ - -## -## recurse-subdirs-X is called from a Makefile one level up. -## -recurse-subdirs-debug:: subdirs-debug publish-debug -recurse-subdirs-release:: subdirs-release publish-release -recurse-subdirs-profile:: subdirs-profile publish-profile -recurse-subdirs-dmalloc:: subdirs-dmalloc publish-dmalloc -recurse-subdirs-ccmalloc:: subdirs-ccmalloc publish-ccmalloc - -recurse-lint:: lint -recurse-clean:: clean -recurse-depend:: depend - -subdirs-debug subdirs-release subdirs-profile subdirs-dmalloc subdirs-ccmalloc lint clean depend:: - @mkdir -p $(PUBLISH_DIR) - @if [ -n "$(SUBDIRS)" ]; then \ - for subdir in x-placeholder-dir $(SUBDIRS); do \ - if [ -d $$subdir ]; then \ - echo $(MSG_SUBDIR); \ - mkdir -p $$subdir/$(BUILD_DIR) ; \ - $(MAKE) -C $$subdir -$(MAKEFLAGS) recurse-$@ || exit 1; \ - fi \ - done \ - fi - -publish-debug:: subdirs-debug -publish-release:: subdirs-release -publish-profile:: subdirs-profile -publish-dmalloc:: subdirs-dmalloc -publish-ccmalloc:: subdirs-ccmalloc - -publish-debug publish-release publish-profile publish-ccmalloc:: $(PUBLISH_DIR)/$(LIBRARY) $(PUBLISH_DIR)/$(BINARY) - -clean:: $(BUILD_DIR) $(PUBLISH_DIR) - rm -fr Release-$(ARCHITECTURE)/* Debug-$(ARCHITECTURE)/* Profile-$(ARCHITECTURE)/* Dmalloc-$(ARCHITECTURE)/* Ccmalloc-$(ARCHITECTURE) Lint-$(ARCHITECTURE)/* - -lint:: - $(LINT) -I$(ERESSEA_SRC) $(INCLUDES) $(LINTFLAGS) *.c - -$(BUILD_DIR) $(PUBLISH_DIR): - @mkdir -p $@ - -# object files: -$(BUILD_DIR)/%:: $(BUILD_DIR) -$(BUILD_DIR)/%.o:: %.c - @echo $(MSG_COMPILE) - $(CC) $(CFLAGS) -o $@ -c $< - @echo - -## -## conversion code for old triggers - should only be used for free eressea, -## and only for old datafiles. -## - -ifeq ($(CONVERT_TRIGGERS), 1) - CFLAGS += -DCONVERT_TRIGGER - INCLUDES += -I. -I$(ERESSEA_SRC)/eressea/old -endif - diff --git a/src/common/attributes/.cvsignore b/src/common/attributes/.cvsignore deleted file mode 100644 index cde50cde0..000000000 --- a/src/common/attributes/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -Debug -Release -Profile diff --git a/src/common/gamecode/.cvsignore b/src/common/gamecode/.cvsignore deleted file mode 100644 index cde50cde0..000000000 --- a/src/common/gamecode/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -Debug -Release -Profile diff --git a/src/common/items/.cvsignore b/src/common/items/.cvsignore deleted file mode 100644 index cde50cde0..000000000 --- a/src/common/items/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -Debug -Release -Profile diff --git a/src/common/kernel/.cvsignore b/src/common/kernel/.cvsignore deleted file mode 100644 index cde50cde0..000000000 --- a/src/common/kernel/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -Debug -Release -Profile diff --git a/src/common/modules/.cvsignore b/src/common/modules/.cvsignore deleted file mode 100644 index cde50cde0..000000000 --- a/src/common/modules/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -Debug -Release -Profile diff --git a/src/common/races/.cvsignore b/src/common/races/.cvsignore deleted file mode 100644 index cde50cde0..000000000 --- a/src/common/races/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -Debug -Release -Profile diff --git a/src/common/spells/.cvsignore b/src/common/spells/.cvsignore deleted file mode 100644 index cde50cde0..000000000 --- a/src/common/spells/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -Debug -Release -Profile diff --git a/src/common/triggers/.cvsignore b/src/common/triggers/.cvsignore deleted file mode 100644 index cde50cde0..000000000 --- a/src/common/triggers/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -Debug -Release -Profile diff --git a/src/common/util/.cvsignore b/src/common/util/.cvsignore deleted file mode 100644 index cde50cde0..000000000 --- a/src/common/util/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -Debug -Release -Profile diff --git a/src/corwin.mk b/src/corwin.mk deleted file mode 100644 index 91d9a78e4..000000000 --- a/src/corwin.mk +++ /dev/null @@ -1,49 +0,0 @@ - -ifndef ERESSEA - export ERESSEA=$(PWD) -endif - -# Hier definieren, damit nicht '@gcc' -CC = gcc-3.2 -D_GNU_SOURCE -ansi -pedantic -DEPEND = @gcc-3.2 -MM -MG -r -# CC = gcc -D_GNU_SOURCE -AR = ar -CTAGS = ctags-exuberant -LD = gcc-3.2 -INSTALL = cp -CFLAGS += -march=athlon -minline-all-stringops - -# Ps = 0 -> Normal (default) -# Ps = 1 -> Bold -# Ps = 4 -> Underlined -# Ps = 5 -> Blink (appears as Bold) -# Ps = 7 -> Inverse -# Ps = 8 -> Invisible (hidden) -# Ps = 2 2 -> Normal (neither bold nor faint) -# Ps = 2 4 -> Not underlined -# Ps = 2 5 -> Steady (not blinking) -# Ps = 2 7 -> Positive (not inverse) -# Ps = 2 8 -> Visible (not hidden) -# Ps = 3 0 -> Set foreground color to Black -# Ps = 3 1 -> Set foreground color to Red -# Ps = 3 2 -> Set foreground color to Green -# Ps = 3 3 -> Set foreground color to Yellow -# Ps = 3 4 -> Set foreground color to Blue -# Ps = 3 5 -> Set foreground color to Magenta -# Ps = 3 6 -> Set foreground color to Cyan -# Ps = 3 7 -> Set foreground color to White -# Ps = 3 9 -> Set foreground color to default (original) -# Ps = 4 0 -> Set background color to Black -# Ps = 4 1 -> Set background color to Red -# Ps = 4 2 -> Set background color to Green -# Ps = 4 3 -> Set background color to Yellow -# Ps = 4 4 -> Set background color to Blue -# Ps = 4 5 -> Set background color to Magenta -# Ps = 4 6 -> Set background color to Cyan -# Ps = 4 7 -> Set background color to White -# Ps = 4 9 -> Set background color to default (original). - -MSG_COMPILE = "\#\#\#\#\# Compiling $@ \#\#\#\#\#" -MSG_SUBDIR = "\#\#\#\#\# Making $@ in $$subdir \#\#\#\#\#" - - diff --git a/src/corwin@amber.mk b/src/corwin@amber.mk deleted file mode 100644 index a61e8a30d..000000000 --- a/src/corwin@amber.mk +++ /dev/null @@ -1,49 +0,0 @@ - -ifndef ERESSEA - export ERESSEA=$(PWD) -endif - -# Hier definieren, damit nicht '@gcc' -CC = gcc-3.3 -D_GNU_SOURCE -ansi -pedantic -DEPEND = @gcc-3.3 -MM -MG -r -# CC = gcc -D_GNU_SOURCE -AR = ar -CTAGS = ctags-exuberant -LD = gcc-3.3 -INSTALL = cp -CFLAGS += -march=athlon -minline-all-stringops - -# Ps = 0 -> Normal (default) -# Ps = 1 -> Bold -# Ps = 4 -> Underlined -# Ps = 5 -> Blink (appears as Bold) -# Ps = 7 -> Inverse -# Ps = 8 -> Invisible (hidden) -# Ps = 2 2 -> Normal (neither bold nor faint) -# Ps = 2 4 -> Not underlined -# Ps = 2 5 -> Steady (not blinking) -# Ps = 2 7 -> Positive (not inverse) -# Ps = 2 8 -> Visible (not hidden) -# Ps = 3 0 -> Set foreground color to Black -# Ps = 3 1 -> Set foreground color to Red -# Ps = 3 2 -> Set foreground color to Green -# Ps = 3 3 -> Set foreground color to Yellow -# Ps = 3 4 -> Set foreground color to Blue -# Ps = 3 5 -> Set foreground color to Magenta -# Ps = 3 6 -> Set foreground color to Cyan -# Ps = 3 7 -> Set foreground color to White -# Ps = 3 9 -> Set foreground color to default (original) -# Ps = 4 0 -> Set background color to Black -# Ps = 4 1 -> Set background color to Red -# Ps = 4 2 -> Set background color to Green -# Ps = 4 3 -> Set background color to Yellow -# Ps = 4 4 -> Set background color to Blue -# Ps = 4 5 -> Set background color to Magenta -# Ps = 4 6 -> Set background color to Cyan -# Ps = 4 7 -> Set background color to White -# Ps = 4 9 -> Set background color to default (original). - -MSG_COMPILE = "\#\#\#\#\# Compiling $@ \#\#\#\#\#" -MSG_SUBDIR = "\#\#\#\#\# Making $@ in $$subdir \#\#\#\#\#" - - diff --git a/src/corwin@liarana.mk b/src/corwin@liarana.mk deleted file mode 100644 index cd6f2febe..000000000 --- a/src/corwin@liarana.mk +++ /dev/null @@ -1,49 +0,0 @@ - -ifndef ERESSEA - export ERESSEA=$(PWD) -endif - -# Hier definieren, damit nicht '@gcc' -CC = gcc -D_GNU_SOURCE -ansi -pedantic -DEPEND = @gcc -MM -MG -r -# CC = gcc -D_GNU_SOURCE -AR = ar -CTAGS = ctags-exuberant -LD = gcc -INSTALL = cp -# CFLAGS += -march=athlon -minline-all-stringops - -# Ps = 0 -> Normal (default) -# Ps = 1 -> Bold -# Ps = 4 -> Underlined -# Ps = 5 -> Blink (appears as Bold) -# Ps = 7 -> Inverse -# Ps = 8 -> Invisible (hidden) -# Ps = 2 2 -> Normal (neither bold nor faint) -# Ps = 2 4 -> Not underlined -# Ps = 2 5 -> Steady (not blinking) -# Ps = 2 7 -> Positive (not inverse) -# Ps = 2 8 -> Visible (not hidden) -# Ps = 3 0 -> Set foreground color to Black -# Ps = 3 1 -> Set foreground color to Red -# Ps = 3 2 -> Set foreground color to Green -# Ps = 3 3 -> Set foreground color to Yellow -# Ps = 3 4 -> Set foreground color to Blue -# Ps = 3 5 -> Set foreground color to Magenta -# Ps = 3 6 -> Set foreground color to Cyan -# Ps = 3 7 -> Set foreground color to White -# Ps = 3 9 -> Set foreground color to default (original) -# Ps = 4 0 -> Set background color to Black -# Ps = 4 1 -> Set background color to Red -# Ps = 4 2 -> Set background color to Green -# Ps = 4 3 -> Set background color to Yellow -# Ps = 4 4 -> Set background color to Blue -# Ps = 4 5 -> Set background color to Magenta -# Ps = 4 6 -> Set background color to Cyan -# Ps = 4 7 -> Set background color to White -# Ps = 4 9 -> Set background color to default (original). - -MSG_COMPILE = "\#\#\#\#\# Compiling $@ \#\#\#\#\#" -MSG_SUBDIR = "\#\#\#\#\# Making $@ in $$subdir \#\#\#\#\#" - - diff --git a/src/enno.mk b/src/enno.mk deleted file mode 100644 index 5a5012d4f..000000000 --- a/src/enno.mk +++ /dev/null @@ -1,14 +0,0 @@ -# -## enable some new features in the source: -# - -#CONVERT_TRIGGERS = 1 - -CFLAGS += -DENNO_ROXXORS - -LD=gcc -AR=ar -#CC=@colorgcc -INSTALL=install -#MSG_COMPILE = "---> Compiling $@ " -#MSG_SUBDIR = "--> Making $@ in $$subdir " diff --git a/src/eressea/.cvsignore b/src/eressea/.cvsignore deleted file mode 100644 index 3970c8df8..000000000 --- a/src/eressea/.cvsignore +++ /dev/null @@ -1,6 +0,0 @@ -Debug -Debug -*.log -*.plg -*.log -Release diff --git a/src/eressea@amber.mk b/src/eressea@amber.mk deleted file mode 100644 index e5baa45b2..000000000 --- a/src/eressea@amber.mk +++ /dev/null @@ -1,49 +0,0 @@ - -ifndef ERESSEA - export ERESSEA=$(PWD) -endif - -# Hier definieren, damit nicht '@gcc' -CC = gcc-3.3 -D_GNU_SOURCE -ansi -pedantic -I/usr/include/libxml2 -DEPEND = @gcc-3.3 -MM -MG -r -# CC = gcc -D_GNU_SOURCE -AR = ar -CTAGS = ctags-exuberant -LD = gcc-3.3 -INSTALL = cp -CFLAGS += -march=athlon -minline-all-stringops - -# Ps = 0 -> Normal (default) -# Ps = 1 -> Bold -# Ps = 4 -> Underlined -# Ps = 5 -> Blink (appears as Bold) -# Ps = 7 -> Inverse -# Ps = 8 -> Invisible (hidden) -# Ps = 2 2 -> Normal (neither bold nor faint) -# Ps = 2 4 -> Not underlined -# Ps = 2 5 -> Steady (not blinking) -# Ps = 2 7 -> Positive (not inverse) -# Ps = 2 8 -> Visible (not hidden) -# Ps = 3 0 -> Set foreground color to Black -# Ps = 3 1 -> Set foreground color to Red -# Ps = 3 2 -> Set foreground color to Green -# Ps = 3 3 -> Set foreground color to Yellow -# Ps = 3 4 -> Set foreground color to Blue -# Ps = 3 5 -> Set foreground color to Magenta -# Ps = 3 6 -> Set foreground color to Cyan -# Ps = 3 7 -> Set foreground color to White -# Ps = 3 9 -> Set foreground color to default (original) -# Ps = 4 0 -> Set background color to Black -# Ps = 4 1 -> Set background color to Red -# Ps = 4 2 -> Set background color to Green -# Ps = 4 3 -> Set background color to Yellow -# Ps = 4 4 -> Set background color to Blue -# Ps = 4 5 -> Set background color to Magenta -# Ps = 4 6 -> Set background color to Cyan -# Ps = 4 7 -> Set background color to White -# Ps = 4 9 -> Set background color to default (original). - -MSG_COMPILE = "\#\#\#\#\# Compiling $@ \#\#\#\#\#" -MSG_SUBDIR = "\#\#\#\#\# Making $@ in $$subdir \#\#\#\#\#" - - diff --git a/src/katze.mk b/src/katze.mk deleted file mode 100644 index 19c304857..000000000 --- a/src/katze.mk +++ /dev/null @@ -1,51 +0,0 @@ - -ifndef ERESSEA - export ERESSEA=$(PWD) -endif - -# Hier definieren, damit nicht '@gcc' -#CC = gcc -DNEW_RESOURCEGROWTH -CC = gcc-3.0 -D_GNU_SOURCE -DEPEND = @gcc-3.0 -MM -MG -r - -AR = ar -CTAGS = ctags-exuberant -LD = gcc-3.0 -INSTALL = cp - -CFLAGS += -minline-all-stringops - -# Ps = 0 -> Normal (default) -# Ps = 1 -> Bold -# Ps = 4 -> Underlined -# Ps = 5 -> Blink (appears as Bold) -# Ps = 7 -> Inverse -# Ps = 8 -> Invisible (hidden) -# Ps = 2 2 -> Normal (neither bold nor faint) -# Ps = 2 4 -> Not underlined -# Ps = 2 5 -> Steady (not blinking) -# Ps = 2 7 -> Positive (not inverse) -# Ps = 2 8 -> Visible (not hidden) -# Ps = 3 0 -> Set foreground color to Black -# Ps = 3 1 -> Set foreground color to Red -# Ps = 3 2 -> Set foreground color to Green -# Ps = 3 3 -> Set foreground color to Yellow -# Ps = 3 4 -> Set foreground color to Blue -# Ps = 3 5 -> Set foreground color to Magenta -# Ps = 3 6 -> Set foreground color to Cyan -# Ps = 3 7 -> Set foreground color to White -# Ps = 3 9 -> Set foreground color to default (original) -# Ps = 4 0 -> Set background color to Black -# Ps = 4 1 -> Set background color to Red -# Ps = 4 2 -> Set background color to Green -# Ps = 4 3 -> Set background color to Yellow -# Ps = 4 4 -> Set background color to Blue -# Ps = 4 5 -> Set background color to Magenta -# Ps = 4 6 -> Set background color to Cyan -# Ps = 4 7 -> Set background color to White -# Ps = 4 9 -> Set background color to default (original). - -MSG_COMPILE = "\#\#\#\#\# Compiling $@ \#\#\#\#\#" -MSG_SUBDIR = "\#\#\#\#\# Making $@ in $$subdir \#\#\#\#\#" - - diff --git a/src/mapper/.cvsignore b/src/mapper/.cvsignore deleted file mode 100644 index cde50cde0..000000000 --- a/src/mapper/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -Debug -Release -Profile diff --git a/src/marquardt.mk b/src/marquardt.mk deleted file mode 100644 index abceef436..000000000 --- a/src/marquardt.mk +++ /dev/null @@ -1,23 +0,0 @@ - -ifndef ERESSEA - export ERESSEA=$(PWD) -endif - -# CONVERT_TRIGGERS = 1 - -NCURSES = 1 - -# Hier definieren, damit nicht '@gcc' -CC = gcc -AR = ar -CTAGS = ctags -CC = gcc -LD = gcc -INSTALL = cp - -# CFLAGS += -Wshadow - -MSG_COMPILE = "Compiling $@" -MSG_SUBDIR = "Making $@ in $$subdir" - - diff --git a/src/tools/prototype-advance/Graph.pyc b/src/tools/prototype-advance/Graph.pyc deleted file mode 100644 index 44a9cad16a33c370e4d00ad53909d55f1a6f8d98..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3389 zcma)8OLH4V5dLOYmi$oSSDBD<9#lv`74jlL62hxO0!|#={B!!+?cc9%fd3}= z8`n5k{`b)U9s=Lk2{a5gfrf`4fM>w{H3K`1hOg2>U+TfmqA{V;VqZ!_CDbaDv|BOa zL59YPr>2Kn~n z%-NO}6;bgy#4>~rw$)`EJlc$l6g*y!9tM$`A1vgW(^NQjekEG(Y@O>ojpgk1daK<^ z>h&U2-8W_9!WmwyP!aLS?mW^7#1f2e)c?I8N`iDG`f1pieWLdnxki7A`>A2e8oh^2 zPviDs59AmW#xT&d%Frg};ep_8*KWVy=l{*gF`ftblrTKK;xNlqLl z(|w%8sU~3n(|wA_GCMzj$u4Eo6k09|ErmQJ;|VmBoNL7Aj1W`g1=x#dC_UFmwrj#p zkr#z*5<+#uK=_!GZ60<3O(@WGu$X^mWD_=59nZ$Vij_IL%yerbh#g(}O89;Cn@_EEVh;E`s0A5Dd6IBWiQ+L}#XC5Y# zdATe+L=%Uz{bJQqt8H4|Ifd1Rl$4O6swG8ptSiaZi}(`-kHg(SSA}tVFwo-P9f38J9uP{%x8CUl?M6j+_P5JNpGfV@zzF0rZ3nI9)`Rd#6rVsmM}cpq zGBz!fQO7;DfUN3Pxyt5Y&muiB#Hq807SJQ|=LCOZRQItX3_73dxl%l@dQ8{_)$>&E zYF1Q36njxUIo8OkyRZJcnA{E-$115zVHCtcQg_DAAQq9Yq0i|^$`xI^`I{^3l=dwo zdg&X>nlfk_<=;C+7*0F3aaR2-2asqWOf1nIJAWA|#`(b_rH`m(k zVs(eaUbP>M@=<_tReq3PipMZS1JX&d8cn5REm_}qsO%cPFjcklB;Hb;;BhB;s=c8T zc1CHwmxKB$Xg|=qH>34lI`nCsok7kVXEsH|y(1)-+G@nXdbF{15%Dq3d^61#i~P)) zBIeDkS<)^e^P`4*pK@t`PUE~3?Z?__Nbu`fn>i+J=LXW$aAX5uBii;6HjS~LXa<-# z$A?dKM^UE6t{~C8_n79Jl3iXfttm;7ChL|a(np;ypU;rYs0}9dbIm!En(5s}`Wx(R zl^ztOa`-c?f1v{BnUBIM(ny`pp-cacM^!}MqgR6c65SG7e78CtUFZI<)O|_ae?4?M z9$Bb#M*~}seLAn@r*dowO~<|2gQGE5;@WDYPYY8ocvzVSgQQ~&?~