removed references to the (not existing) README
[swftools.git] / Makefile.common.in
1 # --------------------- init --------------------------
2
3 # shells, skripts, tools etc.
4 SHELL = @SHELL@
5 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
6 @SET_MAKE@
7
8 # compiling
9 DEFS=@DEFS@
10 INCLUDES=
11 C=@CC@ -c $(DEFS) $(INCLUDES) @CPPFLAGS@ @CFLAGS@
12 CC=@CXX@ -c $(DEFS) $(INCLUDES) @CPPFLAGS@ @CXXFLAGS@
13 L=@CC@ $(DEFS)
14 LL=@CXX@ $(DEFS)
15 AR=@AR@
16 LIBTOOL=@LIBTOOL@
17 SC=$(LIBTOOL) @CC@ -c $(DEFS) $(INCLUDES) @CPPFLAGS@ @CFLAGS@
18 SCC=$(LIBTOOL) @CXX@ -c $(DEFS) $(INCLUDES) @CPPFLAGS@ @CXXFLAGS@
19 SL=$(LIBTOOL) --mode=link @CC@ $(DEFS) -rpath $(libdir)
20 SLL=$(LIBTOOL) --mode=link @CXX@ $(DEFS) -rpath $(libdir)
21 LIBS= @LDFLAGS@ @LIBS@
22
23 transform = @program_transform_name@
24
25 # libtool stuff
26 OBJEXT=@OBJEXT@
27 EXEEXT=@EXEEXT@
28 E=$(EXEEXT)
29 ECHO=@ECHO@
30 RANLIB=@RANLIB@
31 STRIP=@STRIP@
32
33 # installing
34 LN_S = @LN_S@
35 PACKAGE = @PACKAGE@
36 INSTALL = @INSTALL@
37 INSTALL_DATA = @INSTALL_DATA@
38 UNINSTALL_DATA = rm -f
39 INSTALL_PROGRAM = @INSTALL_PROGRAM@
40 prefix = @prefix@
41 exec_prefix = @exec_prefix@
42 bindir = @bindir@
43 datadir = @datadir@
44 libdir = @libdir@
45 includedir = @includedir@
46 sysconfdir = @sysconfdir@
47 pkgdatadir = $(datadir)/@PACKAGE@
48
49 # man pages
50 mandir = @mandir@
51 man1dir = $(mandir)/man1
52
53 # ------------------- defines -------------------------
54
55 INSTALL_BIN = echo installing $$file to $(bindir);$(INSTALL_PROGRAM) $$file $(bindir)/`echo $$file|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`
56 UNINSTALL_BIN = ff=`echo $$file|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`;echo rm -f $(bindir)/$$ff;rm -f $(bindir)/$$ff
57 INSTALL_MAN1 = ff=$(srcdir)/$$file.1; inst=`echo $$file | sed '$(transform)'`.1; echo "$(INSTALL_DATA) $$ff $(man1dir)/$$inst"; $(INSTALL_DATA) $$ff $(man1dir)/$$inst
58 UNINSTALL_MAN1 = ff=$(srcdir)/$$file.1; inst=`echo $$file | sed '$(transform)'`.1; echo "rm -f $(man1dir)/$$inst"; rm -f $(man1dir)/$$inst
59
60 #%.o: %.c
61 #       $(C) $< -o $@
62
63 #%: %.o
64 #       $(L) $< -o $@ ../lib/librfxswf.a $(LIBS) 
65
66 #%.o: %.cc
67 #       $(CC) -DDATADIR=\"$(pkgdatadir)\" -I../lib -Ittf2pt1 -Ixpdf $< -o $@
68
69 # GNU Makefile stuff
70
71 .SUFFIXES: