This repository has been archived by the owner on May 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from UtoECat/develop
0.3 release
- Loading branch information
Showing
137 changed files
with
85,331 additions
and
640 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# devlog | ||
11 december 2022: | ||
- start of devlog | ||
- changed build process a bit. | ||
- added GUI (powered by nuklear) | ||
|
||
17 decenmber 2022: | ||
- added New Session Manager (any OSC) support | ||
- **breaked compability with old clients** : `ju_ctx_init()` arguments changed! | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,27 @@ | ||
# jackutils - what is this? | ||
Jackutils is a library and a set of useful utilities for the JACK. The library implements a simple api for managing connected ports using descriptors, connecting and checking whether the jack server is working, opening a glfw window and primitive drawing functions (for visualizations, optional) | ||
|
||
# list of utilites | ||
- *Some simple utilities* **TODO** | ||
- **Generator** *(increased during time waveform generator)* | ||
- **Waveform** *(visualization utility)* | ||
- **Spectrum** *(visualization utility)* | ||
|
||
# About JackUtils | ||
## jackutils - what is this? | ||
Jackutils is a library and a set of useful utilities for the JACK. The library implements a simple api for managing connected ports using descriptors, connecting and checking whether the jack server is working, setuping and estabilishing connection with session manager, opening a glfw window and gui(powered by nuklear). | ||
## dependencies | ||
- **GLFW** *(Window and OpenGL context creantion and manipulation)* | ||
- **liblo** *(OSC support)* | ||
- **libfftw** *(Fourie transform implementation)* | ||
- **JACK** *(Jack Audio Connection Kit)* **OR** **pipewire-jack** | ||
# List of utilites | ||
## Normalizer | ||
*(Sound modification utility)* Dynamicly normalizes volume. | ||
![normalizer](/doc/normalizer.png) | ||
## Waveform | ||
*(visualization utility)* | ||
![waveform](/doc/waveform.png) | ||
## Spectrum | ||
*(visualization utility)* | ||
![spectrum](/doc/spectrum.png) | ||
# real TODO and contributing | ||
- ~~Include nuklear library!~~ (done) | ||
- Move utilities documentation to separate file! | ||
- ~~Add new session manager support~~ (done) | ||
- C++ is a bullshit! Never tell me to rewrite codebase on C++ or i will take your soul. | ||
- Any ideas for additional utilities? | ||
- Usage of ports at this moment is **TOTALLY NOT THREADSAFE** and thats a problem. Any ideas how to lock them threadsafely and fast please. | ||
- Usage of ports at this moment is **TOTALLY NOT THREADSAFE**. | ||
- I need more tests in real problems, not for my toy needs. If you have any ideas and suggestions, write to Suggestions | ||
- Check is this readme is lexically correct. I hate google translator :D |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/build/share/ext/gl.o: \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/ext/gl.c \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/gl.h | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/gl.h: |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/build/share/ext/resample.o: \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/ext/resample.c |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/build/share/jackgui.o: \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/jackgui.c \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackutils.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_defs.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_buffer.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_context.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_port.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_osc.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackgui.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/gl.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/nuklear.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/ext/nuklear_glfw_gl3.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/ext/nuklear_image.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/ju_icon.h | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackutils.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_defs.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_buffer.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_context.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_port.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_osc.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackgui.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/gl.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/nuklear.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/ext/nuklear_glfw_gl3.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/ext/nuklear_image.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/ju_icon.h: |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/build/share/jackutilsctx.o: \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/jackutilsctx.c \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackutils.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_defs.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_buffer.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_context.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_port.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_osc.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/ju_bits_ctx.h | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackutils.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_defs.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_buffer.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_context.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_port.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_osc.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/ju_bits_ctx.h: |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/build/share/jackutilsosc.o: \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/jackutilsosc.c \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackutils.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_defs.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_buffer.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_context.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_port.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_osc.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/ju_bits_ctx.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/ext/nsm.h | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackutils.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_defs.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_buffer.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_context.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_port.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_osc.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/ju_bits_ctx.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/ext/nsm.h: |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/build/share/jackutilsport.o: \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/jackutilsport.c \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackutils.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_defs.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_buffer.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_context.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_port.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_osc.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/ju_bits_ctx.h | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackutils.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_defs.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_buffer.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_context.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_port.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_osc.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/ju_bits_ctx.h: |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/build/share/jackwidgets.o: \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/jackwidgets.c \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackutils.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_defs.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_buffer.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_context.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_port.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_osc.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackgui.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/gl.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/nuklear.h | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackutils.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_defs.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_buffer.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_context.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_port.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_osc.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackgui.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/gl.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/nuklear.h: |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/build/share/ju_buffer.o: \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/ju_buffer.c \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_buffer.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_defs.h | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_buffer.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_defs.h: |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/build/share/ju_utils.o: \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/share/ju_utils.c \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/ju_resample.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_defs.h | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/ju_resample.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_defs.h: |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/build/utils/normvol/main.o: \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/utils/normvol/main.c \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackutils.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_defs.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_buffer.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_context.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_port.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_osc.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackgui.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/gl.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/nuklear.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/utils/normvol/about.h | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackutils.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_defs.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_buffer.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_context.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_port.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_osc.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackgui.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/gl.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/nuklear.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/utils/normvol/about.h: |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/build/utils/spectrum/main.o: \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/utils/spectrum/main.c \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackutils.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_defs.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_buffer.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_context.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_port.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_osc.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackgui.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/gl.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/nuklear.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/utils/spectrum/about.h | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackutils.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_defs.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_buffer.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_context.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_port.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_osc.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackgui.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/gl.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/nuklear.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/utils/spectrum/about.h: |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/build/utils/waveform/main.o: \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/utils/waveform/main.c \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackutils.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_defs.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_buffer.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_context.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_port.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_osc.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackgui.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/gl.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/nuklear.h \ | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/utils/waveform/about.h | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackutils.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_defs.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_buffer.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_context.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_port.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ju_osc.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/jackgui.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/gl.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/include/ext/nuklear.h: | ||
/home/utoecat/GitHub/UtoECat/JACKUTILS/source/utils/waveform/about.h: |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# nothing to do | ||
.PHONY: all | ||
|
||
all: | ||
@echo "SUcess!" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
# sudo required | ||
sudo cp ./bin/libjackutils.so /usr/lib/ |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.