Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issues/feature/1 #2

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
**/.dep/**
**/build/**

# Tool install files
tools/**/EULA.md
tools/**/**

# Precompiled Headers
*.gch
*.pch
Expand Down
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,22 @@ This repository contains all the files and tools needed to build custom oscillat
* [tools/](tools/) : Installation location and documentation for tools required to build projects and manipulate built products.
* [devboards/](devboards/) : Information and files related to limited edition development boards.

## Quick Start
## Quick Start

### Install and Env Setup

`$ git clone https://github.com/korginc/logue-sdk.git && cd logue-sdk`

### Building Projects

**Note: Make sure git submodules are initialized and updated.**

`$ git submodule update --init --recursive`

**Note: Make sure the necessary toolchain is properly installed. Refer to [tools/](tools/) for installation instructions.**

1. move into a project directory.
1. move into a project directory. (e.g., [platform/prologue/demos/waves/](platform/prologue/demos/waves/))

2. type `make` to build the project.

```
Expand Down
2 changes: 2 additions & 0 deletions platform/prologue/delfx/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,11 @@ ZIP_ARGS = -r -m -q

ifeq ($(OS),Windows_NT)
ifneq ($(MSYSTEM), MSYS)
ifneq ($(MSYSTEM), MINGW64)
ZIP = $(TOOLSDIR)/zip/bin/zip
endif
endif
endif

# #############################################################################
# Include project specific definition
Expand Down
5 changes: 4 additions & 1 deletion platform/prologue/demos/waves/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ ZIP_ARGS = -r -m -q

ifeq ($(OS),Windows_NT)
ifneq ($(MSYSTEM), MSYS)
ZIP = $(TOOLSDIR)/zip/bin/zip
ifneq ($(MSYSTEM), MINGW64)
ZIP = $(TOOLSDIR)/zip/bin/zip
endif
endif
endif

Expand All @@ -48,6 +50,7 @@ GCC_TARGET = arm-none-eabi-
GCC_BIN_PATH = $(TOOLSDIR)/gcc/gcc-arm-none-eabi-5_4-2016q3/bin

CC = $(GCC_BIN_PATH)/$(GCC_TARGET)gcc
CXX = $(GCC_BIN_PATH)/$(GCC_TARGET)g++
CXXC = $(GCC_BIN_PATH)/$(GCC_TARGET)g++
LD = $(GCC_BIN_PATH)/$(GCC_TARGET)gcc
#LD = $(GCC_BIN_PATH)/$(GCC_TARGET)g++
Expand Down
2 changes: 1 addition & 1 deletion platform/prologue/demos/waves/project.mk
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ UCXXSRC = waves.cpp

UINCDIR =

UDEFS =
UDEFS = -o0

ULIB =

Expand Down
2 changes: 2 additions & 0 deletions platform/prologue/modfx/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,11 @@ ZIP_ARGS = -r -m -q

ifeq ($(OS),Windows_NT)
ifneq ($(MSYSTEM), MSYS)
ifneq ($(MSYSTEM), MINGW64)
ZIP = $(TOOLSDIR)/zip/bin/zip
endif
endif
endif

# #############################################################################
# Include project specific definition
Expand Down
3 changes: 3 additions & 0 deletions platform/prologue/osc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,11 @@ ZIP_ARGS = -r -m -q

ifeq ($(OS),Windows_NT)
ifneq ($(MSYSTEM), MSYS)
ifneq ($(MSYSTEM), MINGW64)
ZIP = $(TOOLSDIR)/zip/bin/zip
endif
endif
endif

# #############################################################################
# Include project specific definition
Expand Down Expand Up @@ -230,3 +232,4 @@ package:
@mv $(PROJECT).zip $(PKGARCH)
@echo
@echo Done

2 changes: 2 additions & 0 deletions platform/prologue/revfx/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,11 @@ ZIP_ARGS = -r -m -q

ifeq ($(OS),Windows_NT)
ifneq ($(MSYSTEM), MSYS)
ifneq ($(MSYSTEM), MINGW64)
ZIP = $(TOOLSDIR)/zip/bin/zip
endif
endif
endif

# #############################################################################
# Include project specific definition
Expand Down