makefile.am

来自「Linux环境下手写输入程序。手写输入」· AM 代码 · 共 71 行

AM
71
字号
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 + =
减小字号Ctrl + -
显示快捷键?