Remove Chuck

Chuck can be added back when the routing of MIDI between components is
implemented.
This commit is contained in:
Emery Hemingway
2019-02-22 15:55:45 +01:00
committed by Norman Feske
parent 7cff151ecb
commit e94b81d5d1
22 changed files with 0 additions and 960 deletions

View File

@@ -1 +0,0 @@
baa912c712440e4b793e92bef50c190af77bbbda

View File

@@ -1,33 +0,0 @@
LICENSE := GPL2
VERSION := 1.4.0.0
DOWNLOADS := chuck.archive
#
# Check for tools
#
$(call check_tool,lex)
$(call check_tool,bison)
URL(chuck) := http://chuck.cs.princeton.edu/release/files/chuck-$(VERSION).tgz
SHA(chuck) := 2caee332b8d48e2fddad0f8a0a1811b6cf4c5afab73ae8a17b85ec759cce27ac
DIR(chuck) := src/app/chuck
PATCHES := $(wildcard $(REP_DIR)/src/app/chuck/*.patch)
PATCH_OPT := -p1 -d src/app/chuck
CHUCK_TAB = src/app/chuck/src/core/chuck.tab.c src/app/chuck/src/core/chuck.tab.h
_dirs: $(DOWNLOADS) $(CHUCK_TAB) src/app/chuck/src/core/chuck.yy.c src/app/chuck/src/host/RtAudio.deleted
src/app/chuck/src/host/RtAudio.deleted: src/app/chuck/src/host/RtAudio
$(VERBOSE)rm -r $<
.PHONEY: src/app/chuck/src/host/RtAudio.deleted
$(CHUCK_TAB): src/app/chuck/src/core/chuck.y $(DOWNLOADS)
@$(MSG_GENERATE)$(notdir $@)
$(VERBOSE)$(YACC) -dv -b src/app/chuck/src/core/chuck $<
src/app/chuck/src/core/chuck.yy.c: src/app/chuck/src/core/chuck.lex $(DOWNLOADS)
@$(MSG_GENERATE)$(notdir $@)
$(VERBOSE)$(LEX) -o$@ $<