Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

452 Commits   2 Branches   1 Tag
Index: Makefile
===================================================================
--- Makefile	(nonexistent)
+++ Makefile	(revision 5)
@@ -0,0 +1,143 @@
+###############################################################################
+#
+# Installation DIRECTORIES
+#
+# Change these if you want to install somewhere else.
+
+INSTALL_PLUGINS_DIR	=	/usr/lib/ladspa/
+INSTALL_INCLUDE_DIR	=	/usr/include/
+INSTALL_BINARY_DIR	=	/usr/bin/
+
+###############################################################################
+#
+# GENERAL
+#
+
+INCLUDES	=	-I.
+LIBRARIES	=	-ldl -lm -lsndfile
+CFLAGS		+=	$(INCLUDES) -Wall -Werror -O2 -fPIC 		\
+			-DDEFAULT_LADSPA_PATH=$(INSTALL_PLUGINS_DIR)
+BINFLAGS	+=	-fPIE -pie
+CXXFLAGS	+=	$(CFLAGS)
+PLUGINS		=	../plugins/amp.so				\
+			../plugins/delay.so				\
+			../plugins/filter.so				\
+			../plugins/noise.so				\
+			../plugins/sine.so				
+PROGRAMS	=	../bin/analyseplugin				\
+			../bin/applyplugin 				\
+			../bin/listplugins
+
+###############################################################################
+#
+# RULES TO BUILD PLUGINS FROM C OR C++ CODE
+#
+
+../plugins/%.so:	plugins/%.c ladspa.h gcc_exports.map
+	$(CC) $(CFLAGS) -o plugins/$*.o -c plugins/$*.c
+	$(CC)	-o ../plugins/$*.so					\
+		plugins/$*.o						\
+		-shared							\
+		$(LDFLAGS)						\
+		-fvisibility=hidden					\
+		-fvisibility-inlines-hidden				\
+		-s							\
+		-Wl,--version-script=gcc_exports.map			
+
+../plugins/%.so:	plugins/%.cpp ladspa.h gcc_exports.map
+	$(CXX) $(CXXFLAGS) -o plugins/$*.o -c plugins/$*.cpp
+	$(CXX)	-o ../plugins/$*.so					\
+		plugins/$*.o						\
+		-shared							\
+		$(LDFLAGS)						\
+		-fvisibility=hidden					\
+		-fvisibility-inlines-hidden				\
+		-s							\
+		-Wl,--version-script=gcc_exports.map			
+
+###############################################################################
+#
+# TARGETS
+#
+
+test:	/tmp/test.wav ../snd/noise.wav always
+	@echo ---------------------------------------------
+	@echo First listen to the white noise input signal:
+	@echo ---------------------------------------------
+	-sndfile-play ../snd/noise.wav
+	@echo -------------------------
+	@echo Compare to plugin output.
+	@echo -------------------------
+	@echo Should be a noise band around 6000Hz, repeated quietly after 1s.
+	-sndfile-play /tmp/test.wav
+	@echo Test complete.
+
+install:	targets
+	-mkdir -p $(DESTDIR)$(INSTALL_PLUGINS_DIR)
+	-mkdir -p $(DESTDIR)$(INSTALL_INCLUDE_DIR)
+	-mkdir -p $(DESTDIR)$(INSTALL_BINARY_DIR)
+	cp ../plugins/* $(DESTDIR)$(INSTALL_PLUGINS_DIR)
+	cp ladspa.h $(DESTDIR)$(INSTALL_INCLUDE_DIR)
+	cp ../bin/* $(DESTDIR)$(INSTALL_BINARY_DIR)
+
+/tmp/test.wav:	targets ../snd/noise.wav
+	../bin/listplugins
+	../bin/analyseplugin ../plugins/filter.so
+	../bin/analyseplugin ../plugins/delay.so
+	../bin/analyseplugin ../plugins/sine.so
+	echo ; ../bin/analyseplugin -l ../plugins/sine.so ; echo
+	../bin/analyseplugin ../plugins/amp.so
+	../bin/analyseplugin ../plugins/noise.so
+	../bin/applyplugin	-s 1					\
+				../snd/noise.wav /tmp/test.wav		\
+				../plugins/filter.so lpf 500		\
+				../plugins/filter.so lpf 500		\
+				../plugins/sine.so sine_fcaa 6000	\
+				../plugins/delay.so delay_5s 1 0.1	\
+				../plugins/amp.so amp_mono 4		\
+
+targets:	$(PLUGINS) $(PROGRAMS)
+
+###############################################################################
+#
+# PROGRAMS
+#
+
+../bin/applyplugin:	applyplugin.o load.o default.o
+	$(CC) $(CFLAGS) $(BINFLAGS)					\
+		-o ../bin/applyplugin					\
+		applyplugin.o load.o default.o				\
+		$(LIBRARIES)
+
+../bin/analyseplugin:	analyseplugin.o load.o default.o
+	$(CC) $(CFLAGS) $(BINFLAGS)					\
+		-o ../bin/analyseplugin 				\
+		analyseplugin.o load.o default.o			\
+		$(LIBRARIES)
+
+../bin/listplugins:	listplugins.o search.o
+	$(CC) $(CFLAGS) $(BINFLAGS)					\
+		-o ../bin/listplugins	 				\
+		listplugins.o search.o					\
+		$(LIBRARIES)
+
+###############################################################################
+#
+# UTILITIES
+#
+
+always:	
+
+clean:
+	-rm -f `find . -name "*.o"` ../bin/* ../plugins/*
+	-rm -f `find .. -name "*~"`
+	-rm -f *.bak core score.srt
+	-rm -f *.bb *.bbg *.da *-ann gmon.out bb.out
+	-rm -f `find .. -name "*.class"`
+
+backup:		clean
+	(cd ../../;							\
+	tar czf `date '+../backup/ladspa_sdk.%Y%m%d%H%M.tgz'` ladspa_sdk/)
+
+###############################################################################
+
Index: .
===================================================================
--- .	(nonexistent)
+++ .	(revision 5)

Property changes on: .
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~