aur/Makefile
shtrom a8bde256a1 New package: flv2mpeg4.
git-svn-id: svn+ssh://scm.narf.ssji.net/svn/archlinux-packages@123 df209809-8e4a-0410-9a64-c169741eb0fc
2008-12-03 23:39:48 +00:00

26 lines
548 B
Makefile

# Simple Makefile to ease the compilation of flv2mpeg4
# Olivier Mehani <shtrom-aur@ssji.net>
# $Id$
#
CFLAGS+=-I/usr/include/ffmpeg -L/usr/lib
LDFLAGS+=-lavformat -lavcodec -lavutil
all: flv2mpeg4
install: flv2mpeg4
install -D -m 0755 flv2mpeg4 $(DESTDIR)/usr/bin/flv2mpeg4
flv2mpeg4_SOURCES=avformat_writer.c \
dcprediction.c \
flv2mpeg4.c \
fetch.c \
flvdecoder.c \
m4vencode.c \
mp3header.c
flv2mpeg4: $(flv2mpeg4_SOURCES:.c=.o)
clean:
rm -f $(flv2mpeg4_SOURCES:.c=.o)
rm -f flv2mpeg4
.PHONY: all install clean