30 lines
508 B
Makefile
30 lines
508 B
Makefile
AM_CPPFLAGS = -DLOCALEDIR=\"$(localedir)\" -DSYSCONFDIR=\"$(sysconfdir)\"
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
bin_PROGRAMS = nano
|
|
nano_SOURCES = browser.c \
|
|
chars.c \
|
|
color.c \
|
|
cut.c \
|
|
files.c \
|
|
global.c \
|
|
help.c \
|
|
move.c \
|
|
nano.c \
|
|
nano.h \
|
|
prompt.c \
|
|
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
|
|
uninstall-hook:
|
|
cd $(DESTDIR)$(bindir) && rm -f rnano
|