summaryrefslogtreecommitdiffstats
path: root/TOOLS/realcodecs/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'TOOLS/realcodecs/Makefile')
-rw-r--r--TOOLS/realcodecs/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/TOOLS/realcodecs/Makefile b/TOOLS/realcodecs/Makefile
new file mode 100644
index 0000000000..3327754c38
--- /dev/null
+++ b/TOOLS/realcodecs/Makefile
@@ -0,0 +1,13 @@
+SRCS = 14_4.c 28_8.c cook.c drv2.c drv3.c drv4.c ra.c rv30.c sipr.c
+TARGETS = $(SRCS:.c=.so.6.0)
+
+%.o: %.c
+ cc -c $< -g
+
+%.so.6.0: %.o
+ ld -shared -o $@ $< -ldl -lc
+
+all: $(TARGETS)
+
+clean:
+ rm -f *.so.6.0