/[public]/psiconv/trunk/program/psiconv/Makefile.in
ViewVC logotype

Diff of /psiconv/trunk/program/psiconv/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 2 Revision 109
36 36
37pkgdatadir = $(datadir)/@PACKAGE@ 37pkgdatadir = $(datadir)/@PACKAGE@
38pkglibdir = $(libdir)/@PACKAGE@ 38pkglibdir = $(libdir)/@PACKAGE@
39pkgincludedir = $(includedir)/@PACKAGE@ 39pkgincludedir = $(includedir)/@PACKAGE@
40 40
41top_builddir = .. 41top_builddir = ../..
42 42
43ACLOCAL = @ACLOCAL@ 43ACLOCAL = @ACLOCAL@
44AUTOCONF = @AUTOCONF@ 44AUTOCONF = @AUTOCONF@
45AUTOMAKE = @AUTOMAKE@ 45AUTOMAKE = @AUTOMAKE@
46AUTOHEADER = @AUTOHEADER@ 46AUTOHEADER = @AUTOHEADER@
60host_alias = @host_alias@ 60host_alias = @host_alias@
61host_triplet = @host@ 61host_triplet = @host@
62AS = @AS@ 62AS = @AS@
63CC = @CC@ 63CC = @CC@
64DLLTOOL = @DLLTOOL@ 64DLLTOOL = @DLLTOOL@
65IMAGEMAGICK = @IMAGEMAGICK@
65INT_16_BIT = @INT_16_BIT@ 66INT_16_BIT = @INT_16_BIT@
66INT_32_BIT = @INT_32_BIT@ 67INT_32_BIT = @INT_32_BIT@
67INT_8_BIT = @INT_8_BIT@ 68INT_8_BIT = @INT_8_BIT@
68LD = @LD@
69LIBTOOL = @LIBTOOL@ 69LIBTOOL = @LIBTOOL@
70LIB_MAGICK = @LIB_MAGICK@
70LN_S = @LN_S@ 71LN_S = @LN_S@
71MAKEINFO = @MAKEINFO@ 72MAKEINFO = @MAKEINFO@
72NM = @NM@
73OBJDUMP = @OBJDUMP@ 73OBJDUMP = @OBJDUMP@
74PACKAGE = @PACKAGE@ 74PACKAGE = @PACKAGE@
75RANLIB = @RANLIB@ 75RANLIB = @RANLIB@
76VERSION = @VERSION@ 76VERSION = @VERSION@
77cflags_set = @cflags_set@
77 78
78INCLUDES = -I.. -I../lib 79INCLUDES = -I../.. -I../../lib -I../../compat
79 80
80bin_PROGRAMS = psiconv 81bin_PROGRAMS = psiconv
81psiconv_SOURCES = psiconv.c 82psiconv_SOURCES = psiconv.c gen_html.c gen_html4.c gen_txt.c gen_rtf.c gen_image.c gen_latex.c magick-aux.c
83
82psiconv_LDADD = ../lib/libpsiconv.la 84psiconv_LDADD = ../../lib/psiconv/libpsiconv.la @LIB_MAGICK@
85psiconv_noinstHEADERS = gen.h psiconv.h magick-aux.h
86
87EXTRA_DIST = gen.h psiconv.h magick-aux.h
83mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs 88mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
84CONFIG_HEADER = ../config.h 89CONFIG_HEADER = ../../config.h
85CONFIG_CLEAN_FILES = 90CONFIG_CLEAN_FILES =
86PROGRAMS = $(bin_PROGRAMS) 91PROGRAMS = $(bin_PROGRAMS)
87 92
88 93
89DEFS = @DEFS@ -I. -I$(srcdir) -I.. 94DEFS = @DEFS@ -I. -I$(srcdir) -I../..
90CPPFLAGS = @CPPFLAGS@ 95CPPFLAGS = @CPPFLAGS@
91LDFLAGS = @LDFLAGS@ 96LDFLAGS = @LDFLAGS@
92LIBS = @LIBS@ 97LIBS = @LIBS@
93psiconv_OBJECTS = psiconv.o 98psiconv_OBJECTS = psiconv.o gen_html.o gen_html4.o gen_txt.o gen_rtf.o \
99gen_image.o gen_latex.o magick-aux.o
94psiconv_DEPENDENCIES = ../lib/libpsiconv.la 100psiconv_DEPENDENCIES = ../../lib/psiconv/libpsiconv.la
95psiconv_LDFLAGS = 101psiconv_LDFLAGS =
96CFLAGS = @CFLAGS@ 102CFLAGS = @CFLAGS@
97COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) 103COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
98LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) 104LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
99CCLD = $(CC) 105CCLD = $(CC)
103 109
104DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) 110DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
105 111
106TAR = tar 112TAR = tar
107GZIP_ENV = --best 113GZIP_ENV = --best
108DEP_FILES = .deps/psiconv.P 114DEP_FILES = .deps/gen_html.P .deps/gen_html4.P .deps/gen_image.P \
115.deps/gen_latex.P .deps/gen_rtf.P .deps/gen_txt.P .deps/magick-aux.P \
116.deps/psiconv.P
109SOURCES = $(psiconv_SOURCES) 117SOURCES = $(psiconv_SOURCES)
110OBJECTS = $(psiconv_OBJECTS) 118OBJECTS = $(psiconv_OBJECTS)
111 119
112all: all-redirect 120all: all-redirect
113.SUFFIXES: 121.SUFFIXES:
114.SUFFIXES: .S .c .lo .o .s 122.SUFFIXES: .S .c .lo .o .s
115$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) 123$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
116 cd $(top_srcdir) && $(AUTOMAKE) --gnu psiconv/Makefile 124 cd $(top_srcdir) && $(AUTOMAKE) --gnu program/psiconv/Makefile
117 125
118Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES) 126Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
119 cd $(top_builddir) \ 127 cd $(top_builddir) \
120 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 128 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
121 129
210 218
211maintainer-clean-tags: 219maintainer-clean-tags:
212 220
213distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) 221distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
214 222
215subdir = psiconv 223subdir = program/psiconv
216 224
217distdir: $(DISTFILES) 225distdir: $(DISTFILES)
218 here=`cd $(top_builddir) && pwd`; \ 226 here=`cd $(top_builddir) && pwd`; \
219 top_distdir=`cd $(top_distdir) && pwd`; \ 227 top_distdir=`cd $(top_distdir) && pwd`; \
220 distdir=`cd $(distdir) && pwd`; \ 228 distdir=`cd $(distdir) && pwd`; \
221 cd $(top_srcdir) \ 229 cd $(top_srcdir) \
222 && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu psiconv/Makefile 230 && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu program/psiconv/Makefile
223 @for file in $(DISTFILES); do \ 231 @for file in $(DISTFILES); do \
224 d=$(srcdir); \ 232 d=$(srcdir); \
225 if test -d $$d/$$file; then \ 233 if test -d $$d/$$file; then \
226 cp -pr $$/$$file $(distdir)/$$file; \ 234 cp -pr $$/$$file $(distdir)/$$file; \
227 else \ 235 else \

Legend:
Removed from v.2  
changed lines
  Added in v.109

frodo@frodo.looijaard.name
ViewVC Help
Powered by ViewVC 1.1.26