forked from mean00/avidemux2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
43 lines (41 loc) · 970 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#
# Dirty makefile to include addons
#
DISTFILES= Makefile ad2_copy_nuv \
ffv1rec/History \
ffv1rec/LICENSE \
ffv1rec/Makefile \
ffv1rec/ffv1.h \
ffv1rec/ffv1audio.c \
ffv1rec/ffv1codec.c \
ffv1rec/ffv1color.c \
ffv1rec/ffv1rec.c \
ffv1rec/ffv1video.c \
ffv1rec/ffv1write.c \
ffv1rec/nuppelvideo.h
install:
@echo "nothing to install here"
clean:
@echo "nothing to clean here"
distclean:
@echo "nothing to distclean here"
all: $(DISTFILE)
@echo "nothing to build here"
srcdir= .
distdir: $(DISTFILES)
mkdir $(distdir)/ffv1rec
@for file in $(DISTFILES); do \
if test -f $$file; then d=.; else d=$(srcdir); fi; \
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
$(mkinstalldirs) "$(distdir)/$$dir"; \
fi; \
if test -d $$d/$$file; then \
cp -pR $$d/$$file $(distdir) \
|| exit 1; \
else \
test -f $(distdir)/$$file \
|| cp -p $$d/$$file $(distdir)/$$file \
|| exit 1; \
fi; \
done