summaryrefslogtreecommitdiffstats
path: root/fbreader/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'fbreader/Makefile')
-rw-r--r--fbreader/Makefile70
1 files changed, 0 insertions, 70 deletions
diff --git a/fbreader/Makefile b/fbreader/Makefile
deleted file mode 100644
index 80d5d56..0000000
--- a/fbreader/Makefile
+++ /dev/null
@@ -1,70 +0,0 @@
-ROOTDIR = $(CURDIR)/..
-
-MAKEFILESDIR = $(ROOTDIR)/makefiles
-
-include $(MAKEFILESDIR)/config.mk
-
-TARGET = FBReader
-target = fbreader
-
-ALL_SUBDIRS = src src/database src/database/sqldb src/database/sqldb/implsqlite src/database/booksdb src/database/booksdb/runnables src/database/networkdb src/database/networkdb/runnables src/migration src/options src/library src/bookmodel src/formats src/formats/fb2 src/formats/docbook src/formats/css src/formats/html src/formats/pdb src/formats/txt src/formats/tcr src/formats/chm src/formats/xhtml src/formats/oeb src/formats/rtf src/formats/openreader src/formats/pdf src/formats/doc src/formats/dummy src/formats/util src/external src/fbreader src/encodingOption src/network src/network/authentication src/network/atom src/network/opds src/network/litres src/network/tree src/network/authentication/litres src/blockTree src/libraryActions src/libraryTree src/networkActions src/tree src/optionsDialog src/optionsDialog/bookInfo src/optionsDialog/library src/optionsDialog/network src/optionsDialog/system src/optionsDialog/reading src/optionsDialog/lookAndFeel
-ALL_ARCHSUBDIRS = desktop pdaxrom opie zaurus maemo openzaurus pma400 win32
-
-SUBDIRS = src/database src/database/sqldb src/database/sqldb/implsqlite src/database/booksdb src/database/booksdb/runnables src/database/networkdb src/database/networkdb/runnables src/migration src/options src/library src/bookmodel \
- src/formats src/formats/fb2 src/formats/css src/formats/html src/formats/pdb src/formats/txt src/formats/tcr src/formats/chm src/formats/xhtml src/formats/oeb src/formats/rtf src/formats/openreader src/formats/doc src/formats/util \
- src/external src/fbreader src/encodingOption src/network src/network/authentication src/network/atom src/network/opds src/network/litres src/network/tree src/network/authentication/litres \
- src/blockTree src/libraryActions src/libraryTree src/networkActions src/tree src/optionsDialog src/optionsDialog/bookInfo src/optionsDialog/library src/optionsDialog/network src/optionsDialog/system src/optionsDialog/reading src/optionsDialog/lookAndFeel
-
-all: .resources
- @for subdir in $(SUBDIRS); do \
- if ! $(MAKE) -C $$subdir -f $(MAKEFILESDIR)/subdir.mk; then \
- exit 1; \
- fi; \
- done;
- @echo -n 'Linking $(TARGET) ...'
- @$(LD) $(LDFLAGS) -o $(TARGET) `find src -name *.o | LC_ALL=C sort` $(TEXT_LIBS) $(CORE_LIBS) $(ZLUI_LIB) -lsqlite3
- @echo ' OK'
-
-FBSHAREDIR = $(DESTDIR)$(SHAREDIR)/FBReader
-VARIANT = $(TARGET_ARCH)
-ifneq "$(RESOLUTION)" ""
- VARIANT = $(TARGET_ARCH)_$(RESOLUTION)
-endif
-
-APPIMAGEDIR_REAL = $(subst %application_name%,$(target),$(subst %APPLICATION_NAME%,$(TARGET),$(APPIMAGEDIR)))
-
-do_install:
- @install -d $(DESTDIR)$(BINDIR)
- @install $(TARGET) $(DESTDIR)$(BINDIR)/FBReader
- @install -d $(FBSHAREDIR)
- @install -d $(FBSHAREDIR)/help
- @./scripts/install_help.sh $(VARIANT) $(FBSHAREDIR)/help
- @install -d $(FBSHAREDIR)/formats/html
- @install -m 0644 data/formats/html/html.ent $(FBSHAREDIR)/formats/html
- @install -d $(FBSHAREDIR)/formats/fb2
- @sed "s/VERSION/$(VERSION)/" data/formats/fb2/FBReaderVersion.ent > $(FBSHAREDIR)/formats/fb2/FBReaderVersion.ent
- @install -m 0644 data/formats/fb2/fb2genres.xml $(FBSHAREDIR)/formats/fb2
- @install -d $(FBSHAREDIR)/default
- @./scripts/install_toolbar_and_menu.sh $(VARIANT) $(UI_TYPE) $(FBSHAREDIR)/default
- @./scripts/install_config.sh $(VARIANT) $(UI_TYPE) $(FBSHAREDIR)/default
- @install -m 0644 data/default/external.$(TARGET_ARCH).xml $(FBSHAREDIR)/default/external.xml
- @if [ -f data/default/messages.$(TARGET_ARCH).xml ]; then \
- install -m 0644 data/default/messages.$(TARGET_ARCH).xml $(FBSHAREDIR)/default/messages.xml; \
- fi
- @install -d $(FBSHAREDIR)/resources
- @install -m 0644 $(wildcard data/resources/*.xml) $(FBSHAREDIR)/resources
- @install -d $(DESTDIR)$(APPIMAGEDIR_REAL)
- @install -m 0644 $(wildcard data/icons/toolbar/$(VARIANT)/*.*) $(DESTDIR)$(APPIMAGEDIR_REAL)
- @install -m 0644 $(wildcard data/icons/filetree/$(VARIANT)/*.*) $(DESTDIR)$(APPIMAGEDIR_REAL)
- @install -m 0644 $(wildcard data/icons/booktree/new/*.*) $(DESTDIR)$(APPIMAGEDIR_REAL)
- @install -m 0644 $(wildcard data/icons/*.*) $(DESTDIR)$(APPIMAGEDIR_REAL)
- @$(MAKE) -C $(TARGET_ARCH) RESOLUTION=$(RESOLUTION) install
-
-clean:
- @for subdir in $(ALL_SUBDIRS); do \
- $(MAKE) -C $$subdir -f $(MAKEFILESDIR)/subdir.mk clean; \
- done;
- @for subdir in $(ALL_ARCHSUBDIRS); do \
- cd $$subdir; $(MAKE) clean; cd ..; \
- done;
- @$(RM) $(TARGET) err