Move ttynvt source to src/
This commit is contained in:
committed by
Kim Woelders
parent
cf6b334bcc
commit
e3675b9e89
+1
-1
@@ -20,7 +20,7 @@ Makefile
|
|||||||
|
|
||||||
# build
|
# build
|
||||||
*.o
|
*.o
|
||||||
/ttynvt
|
/src/ttynvt
|
||||||
|
|
||||||
/ttynvt-*.tar.gz
|
/ttynvt-*.tar.gz
|
||||||
/ttynvt-*.tar.xz
|
/ttynvt-*.tar.xz
|
||||||
|
|||||||
+2
-15
@@ -1,20 +1,7 @@
|
|||||||
# Build ttynvt
|
|
||||||
#
|
|
||||||
|
|
||||||
MAINTAINERCLEANFILES = \
|
MAINTAINERCLEANFILES = \
|
||||||
aclocal.m4 autom4te.cache compile config.h.in config.h.in~ configure \
|
aclocal.m4 autom4te.cache compile config.h.in config.h.in~ configure \
|
||||||
depcomp install-sh missing \
|
depcomp install-sh missing \
|
||||||
Makefile.in
|
Makefile.in */Makefile.in
|
||||||
|
|
||||||
CFLAGS_OPT = -O3
|
SUBDIRS = src
|
||||||
CFLAGS_WARN = -Wall -Wextra -Werror -Wno-unused-parameter
|
|
||||||
|
|
||||||
bin_PROGRAMS = ttynvt
|
|
||||||
|
|
||||||
ttynvt_SOURCES = \
|
|
||||||
ttynvt.c \
|
|
||||||
telnet_basic.c telnet_rfc2217.c telnet.h telnet_param.h
|
|
||||||
|
|
||||||
ttynvt_CPPFLAGS = -I$(top_builddir) $(FUSE_CFLAGS) $(CFLAGS_OPT) $(CFLAGS_WARN)
|
|
||||||
|
|
||||||
ttynvt_LDADD = $(FUSE_LIBS)
|
|
||||||
|
|||||||
@@ -32,6 +32,7 @@ PKG_CHECK_MODULES(FUSE, fuse)
|
|||||||
AC_CONFIG_HEADERS([config.h])
|
AC_CONFIG_HEADERS([config.h])
|
||||||
AC_CONFIG_FILES([
|
AC_CONFIG_FILES([
|
||||||
Makefile
|
Makefile
|
||||||
|
src/Makefile
|
||||||
])
|
])
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,13 @@
|
|||||||
|
|
||||||
|
CFLAGS_OPT = -O3
|
||||||
|
CFLAGS_WARN = -Wall -Wextra -Werror -Wno-unused-parameter
|
||||||
|
|
||||||
|
bin_PROGRAMS = ttynvt
|
||||||
|
|
||||||
|
ttynvt_SOURCES = \
|
||||||
|
ttynvt.c \
|
||||||
|
telnet_basic.c telnet_rfc2217.c telnet.h telnet_param.h
|
||||||
|
|
||||||
|
ttynvt_CPPFLAGS = -I$(top_builddir) $(FUSE_CFLAGS) $(CFLAGS_OPT) $(CFLAGS_WARN)
|
||||||
|
|
||||||
|
ttynvt_LDADD = $(FUSE_LIBS)
|
||||||
Reference in New Issue
Block a user