691698a954
spell checking, justifying, and word counting) to their own source file, text.c git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2919 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
26 строки
449 B
Makefile
26 строки
449 B
Makefile
localedir = $(datadir)/locale
|
|
INCLUDES = -Iintl -DLOCALEDIR=\"$(localedir)\" -DSYSCONFDIR=\"$(sysconfdir)\"
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
bin_PROGRAMS = nano
|
|
nano_SOURCES = chars.c \
|
|
color.c \
|
|
cut.c \
|
|
files.c \
|
|
global.c \
|
|
move.c \
|
|
nano.c \
|
|
nano.h \
|
|
proto.h \
|
|
rcfile.c \
|
|
search.c \
|
|
text.c \
|
|
utils.c \
|
|
winio.c
|
|
|
|
nano_LDADD = @GLIB_LIBS@ @LIBINTL@
|
|
|
|
install-exec-hook:
|
|
cd $(DESTDIR)$(bindir) && rm -f rnano && $(LN_S) nano rnano
|