mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-19 22:30:06 +01:00
re-import branch of vevo , vevo with memory pool
git-svn-id: svn://code.dyne.org/veejay/trunk@474 eb8d1916-c9e9-0310-b8de-cf0c9472ead5
This commit is contained in:
35
vevo-mpool/plugins/makefile
Normal file
35
vevo-mpool/plugins/makefile
Normal file
@@ -0,0 +1,35 @@
|
||||
CC = gcc
|
||||
LINKER = ld
|
||||
CFLAGS = -I. -I../include -I ../ -Wall -g $(shell vevo-config --cflags)
|
||||
all:
|
||||
# vevo - veejay video objects
|
||||
#
|
||||
# plugins :
|
||||
# bathroom
|
||||
# opacity
|
||||
#
|
||||
# compile: make plugins
|
||||
# run:
|
||||
# export LD_LIBRARY_PATH=`pwd`
|
||||
# host <plugin.so>
|
||||
|
||||
plugins: fade_plugin.so
|
||||
|
||||
|
||||
fade.so: fade_plugin.o
|
||||
|
||||
clean:
|
||||
rm -rf *.o *.so
|
||||
|
||||
# generic make rules
|
||||
|
||||
%: %.c
|
||||
$(CC) $(CFLAGS) -o $@ $< -ldl
|
||||
|
||||
%.o: %.c
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
%.so: %.o
|
||||
$(LINKER) -shared $^ -o $@
|
||||
# $(LINKER) -E -z now -shared $^ -o $@
|
||||
|
||||
|
||||
Reference in New Issue
Block a user