Skip to content

Commit ce1229f

Browse files
committed
move source files to a subdirectory
1 parent ab14461 commit ce1229f

38 files changed

+15
-68
lines changed

AUDIOGUIDE.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Audio setup for M8 headless
22

3+
Please note that the program includes SDL based audio routing built-in nowadays.
4+
5+
Experimental audio routing support can be enabled by setting the config value `"audio_enabled"` to `"true"`. The audio buffer size can also be tweaked from the config file for possible lower latencies.
6+
If the right audio device is not picked up by default, you can use a specific audio device by using `"audio_output_device"` config parameter.
7+
38
## Windows
49

510
* Right click Sound in Taskbar

Android.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ include $(CLEAR_VARS)
44

55
LOCAL_MODULE := m8c
66

7-
LOCAL_SRC_FILES := $(wildcard $(LOCAL_PATH)/*.c)
7+
LOCAL_SRC_FILES := $(wildcard $(LOCAL_PATH)/src/*.c)
88

9-
LOCAL_EXPORT_C_INCLUDES := $(wildcard $(LOCAL_PATH)/*.h)
9+
LOCAL_EXPORT_C_INCLUDES := $(wildcard $(LOCAL_PATH)/src/*.h)
1010

1111
LOCAL_CFLAGS += -DUSE_LIBUSB
1212

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ else ()
1616
link_directories(${SDL2_LIBRARY_DIRS} ${LIBSERIALPORT_LIBRARY_DIRS})
1717
endif (USE_LIBUSB)
1818

19-
file(GLOB m8c_SRC "*.h" "*.c")
19+
file(GLOB m8c_SRC "src/*.h" "src/*.c")
2020

21-
set(MACOS_CONTENTS "${CMAKE_CURRENT_SOURCE_DIR}/macos/m8c.app/Contents")
21+
set(MACOS_CONTENTS "${CMAKE_CURRENT_SOURCE_DIR}/package/macos/m8c.app/Contents")
2222

2323
set(APP_ICON ${MACOS_CONTENTS}/Resources/m8c.icns)
2424
set_source_files_properties(${APP_ICON} PROPERTIES

Makefile

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#Set all your object files (the object files of all the .c files in your project, e.g. main.o my_sub_functions.o )
2-
OBJ = main.o serial.o slip.o command.o render.o ini.o config.o input.o fx_cube.o usb.o audio.o usb_audio.o ringbuffer.o inprint2.o
2+
OBJ = src/main.o src/serial.o src/slip.o src/command.o src/render.o src/ini.o src/config.o src/input.o src/fx_cube.o src/usb.o src/audio.o src/usb_audio.o src/ringbuffer.o src/inprint2.o
33

44
#Set any dependant header files so that if they are edited they cause a complete re-compile (e.g. main.h some_subfunctions.h some_definitions_file.h ), or leave blank
5-
DEPS = serial.h slip.h command.h render.h ini.h config.h input.h fx_cube.h audio.h ringbuffer.h inline_font.h
5+
DEPS = src/serial.h src/slip.h src/command.h src/render.h src/ini.h src/config.h src/input.h src/fx_cube.h src/audio.h src/ringbuffer.h src/inline_font.h
66

77
#Any special libraries you are using in your project (e.g. -lbcm2835 -lrt `pkg-config --libs gtk+-3.0` ), or leave blank
88
INCLUDES = $(shell pkg-config --libs sdl2 libserialport)
@@ -16,6 +16,8 @@ CC = gcc
1616
#Set the filename extensiton of your C files (e.g. .c or .cpp )
1717
EXTENSION = .c
1818

19+
SOURCE_DIR = src/
20+
1921
#define a rule that applies to all files ending in the .o suffix, which says that the .o file depends upon the .c version of the file and all the .h files included in the DEPS macro. Compile each object file
2022
%.o: %$(EXTENSION) $(DEPS)
2123
$(CC) -c -o $@ $< $(local_CFLAGS)
@@ -33,7 +35,7 @@ libusb: m8c
3335
.PHONY: clean
3436

3537
clean:
36-
rm -f *.o *~ m8c
38+
rm -f src/*.o *~ m8c
3739

3840
# PREFIX is environment variable, but if it is not set, then set default value
3941
ifeq ($(PREFIX),)

config.ini.sample

-60
This file was deleted.
File renamed without changes.
File renamed without changes.

package/rpm/m8c.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: m8c
2-
Version: 1.5.3
2+
Version: 1.5.4
33
Release: 1%{?dist}
44
Summary: m8c is a client for Dirtywave M8 music tracker's headless mode
55

SDL2_inprint.h src/SDL2_inprint.h

File renamed without changes.

audio.c src/audio.c

File renamed without changes.

audio.h src/audio.h

File renamed without changes.

command.c src/command.c

File renamed without changes.

command.h src/command.h

File renamed without changes.

config.c src/config.c

File renamed without changes.

config.h src/config.h

File renamed without changes.

fx_cube.c src/fx_cube.c

File renamed without changes.

fx_cube.h src/fx_cube.h

File renamed without changes.

ini.c src/ini.c

File renamed without changes.

ini.h src/ini.h

File renamed without changes.

inline_font.h src/inline_font.h

File renamed without changes.
File renamed without changes.
File renamed without changes.

inprint2.c src/inprint2.c

File renamed without changes.

input.c src/input.c

File renamed without changes.

input.h src/input.h

File renamed without changes.

main.c src/main.c

File renamed without changes.

render.c src/render.c

File renamed without changes.

render.h src/render.h

File renamed without changes.

ringbuffer.c src/ringbuffer.c

File renamed without changes.

ringbuffer.h src/ringbuffer.h

File renamed without changes.

serial.c src/serial.c

File renamed without changes.

serial.h src/serial.h

File renamed without changes.

slip.c src/slip.c

File renamed without changes.

slip.h src/slip.h

File renamed without changes.

usb.c src/usb.c

File renamed without changes.

usb.h src/usb.h

File renamed without changes.

usb_audio.c src/usb_audio.c

File renamed without changes.

0 commit comments

Comments
 (0)