1## Process this file with automake to produce Makefile.in
2
3CXXFLAGS = @CXXFLAGS@ @X_CFLAGS@
4INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/include
5RESWRAP  = $(top_builddir)/utils/reswrap
6SUFFIXES = .gif .bmp
7LDADD	 = $(top_builddir)/src/libFOX-1.6.la -lm
8
9bin_PROGRAMS	= PathFinder
10
11man_MANS = PathFinder.1
12
13ICONS = \
14bigicons.bmp \
15closepanel.gif \
16clrbook.gif \
17copy.bmp \
18copyit.gif \
19cut.bmp \
20deleteit.bmp \
21desktop.bmp \
22details.bmp \
23dirup.bmp \
24enter.gif \
25file_gif.gif \
26foxbig.gif \
27foxmini.gif \
28goback.bmp \
29goforw.bmp \
30gotodir.bmp \
31home.gif \
32hosts.bmp \
33iconpath.gif \
34linkit.gif \
35location.gif \
36maphost.bmp \
37mimetype.gif \
38moveit.gif \
39paste.bmp \
40pattern_gif.gif \
41properties.bmp \
42quit_gif.gif \
43renameit.gif \
44rotateleft.gif \
45rotateright.gif \
46setbook.gif \
47setdir.gif \
48smallicons.bmp \
49unmaphost.bmp \
50work.gif
51
52PathFinder_SOURCES =  \
53icons.h \
54icons.cpp \
55CopyDialog.h \
56CopyDialog.cpp \
57PathFinder.cpp \
58PathFinder.h \
59Preferences.cpp \
60Preferences.h \
61PropertyDialog.cpp \
62PropertyDialog.h \
63LICENSE \
64$(ICONS)
65
66PathFinder.cpp: icons.h icons.cpp
67
68icons.h: $(ICONS)
69	$(RESWRAP) -i -o icons.h $^
70
71icons.cpp: $(ICONS)
72	$(RESWRAP) -e -o icons.cpp $^
73
74CLEANFILES	= icons.h icons.cpp
75
76EXTRA_DIST = $(man_MANS) \
77             Makefile.bc \
78             Makefile.wc \
79             Makefile.dmc
80
81