aboutsummaryrefslogtreecommitdiff
path: root/videogrid/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'videogrid/Makefile')
-rwxr-xr-xvideogrid/Makefile35
1 files changed, 0 insertions, 35 deletions
diff --git a/videogrid/Makefile b/videogrid/Makefile
deleted file mode 100755
index fcded8d..0000000
--- a/videogrid/Makefile
+++ /dev/null
@@ -1,35 +0,0 @@
-PD_SRC=../../../pd/src
-FFMPEG_HEADERS=-I/usr/include/ffmpeg
-
-NAME=videogrid
-CSYM=videogrid
-
-current: pd_linux
-
-# ----------------------- LINUX -----------------------
-
-pd_linux: $(NAME).pd_linux
-
-.SUFFIXES: .pd_linux
-
-LINUXCFLAGS = -fPIC -DPD -DUNIX -DICECAST -O2 -funroll-loops -fomit-frame-pointer \
- -Wall -W -Wno-shadow -Wstrict-prototypes \
- -Wno-unused -Wno-parentheses -Wno-switch
-
-
-LINUXINCLUDE = -I$(PD_SRC) -I/usr/include/
-
-.cc.pd_linux:
- g++ $(FFMPEG_HEADERS) -I$(PD_SRC) -fPIC -c -O -o videogrid.o videogrid.cc
-# ./tk2c.bash < $*.tk > $*.tk2c
- g++ $(FFMPEG_HEADERS) -Wl,--export-dynamic -shared -o videogrid.pd_linux videogrid.o -lavformat -lavcodec -lavutil -lswscale -lquicktime
- rm -f $*.o
-
-# ----------------------------------------------------------
-
-install:
- cp *-help.pd ../../../doc/5.reference
-
-clean:
- rm -f *.o *.pd_* so_locations
-