⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.am

📁 Linux环境下手写输入程序。手写输入
💻 AM
字号:
INCLUDES = @GTK_CFLAGS@ @GNOME_CFLAGS@LDADD = @GTK_LIBS@ @GNOME_LIBS@AM_CFLAGS = -DDATADIR=\"$(datadir)\" -DPKGDATADIR=\"$(pkgdatadir)\"bin_PROGRAMS = cellwritercellwriter_SOURCES = \        src/common.h \        src/recognize.h \        src/main.c \        src/window.c \        src/keyevent.c \        src/cellwidget.c \        src/recognize.c \        src/stroke.c \        src/options.c \        src/averages.c \        src/wordfreq.c \        src/preprocess.c \        src/keywidget.c \        src/keys.h \        src/singleinstance.c \        src/statusicon.c# We either build the new GtkStatusIcon for GTK 2.10 or libegg for GTK 2.8if !GTKSTATUSICONcellwriter_SOURCES += \        src/libegg/eggtrayicon.c \        src/libegg/eggtrayicon.hendif !GTKSTATUSICON# CellWriter tray and program iconiconsdir = $(datadir)/icons/hicolor/scalable/appsdist_icons_DATA = share/icons/hicolor/scalable/apps/cellwriter.svg# CellWriter menu iconmenuicondir = $(datadir)/pixmapsdist_menuicon_DATA = share/pixmaps/cellwriter.xpm# Updates the icon cache so that the CellWriter icon will show up in the menugtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolorinstall-data-hook:	@-if test -z "$(DESTDIR)"; then \		echo "Updating Gtk icon cache."; \		$(gtk_update_icon_cache); \	else \		echo "*** Icon cache not updated.  After install, run this:"; \		echo "***   $(gtk_update_icon_cache)"; \	fi# X11 .desktop program name and icon informationapplicationsdir = $(datadir)/applicationsdist_applications_DATA = cellwriter.desktop# Initial profile and English word frequency fileshareddir = $(pkgdatadir)dist_shared_DATA = \        share/cellwriter/wordfreq \        share/cellwriter/profile# Manpagecellwritermandir = $(mandir)/man1dist_cellwriterman_DATA = cellwriter.1# Distribute the testing application as an added bonusEXTRA_DIST = \        test/test.c \        test/Makefile

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -