forked from swftools/swftools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.in
37 lines (31 loc) · 963 Bytes
/
Makefile.in
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
top_builddir = ..
srcdir = @srcdir@
top_srcdir = @top_srcdir@
include ./Makefile.common
all install uninstall clean:
@echo making $@ in m4...
cd m4;$(MAKE) $@
@echo making $@ in lib...
cd lib;$(MAKE) $@
@echo making $@ in lib/python...
cd lib/python;$(MAKE) $@
@echo making $@ in src...
cd src;$(MAKE) $@
@echo making $@ in pdf2swf...
cd pdf2swf;$(MAKE) $@
@echo making $@ in avi2swf...
cd avi2swf;$(MAKE) $@
@echo making $@ in swfs...
cd swfs;$(MAKE) $@
@$(MAKE) $@-local
distclean:
$(MAKE) clean
rm -f config.status config.cache configure config.h Makefile Makefile.common libtool
rm -f lib/lame/Makefile lib/python/Makefile lib/Makefile src/Makefile avi2swf/Makefile pdf2swf/Makefile pdf2swf/ttf2pt1/Makefile pdf2swf/xpdf/Makefile
clean-local:
rm -f config.cache gmon.out
uninstall-local:
rm -rf $(pkgdatadir)
all-local:
install-local:
.PHONY: all install uninstall clean distclean clean-local uninstall-local all-local install-local