diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2017-12-19 02:03:02 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2017-12-19 02:03:02 +0100 |
commit | 23bcd14d85b272e486ff90e1f761dadd4d9508e1 (patch) | |
tree | c173d5d785eebcd45aea8ba99c5b23fce2a0e217 /src/Makefile.am | |
parent | 3c491a8bec71606b7af5f1d8c34de8e9710bbe13 (diff) |
ptunnel-ng:
* autotools set/use package version string
* autotools renamed output binary to ptunnel-ng
* more "intuitive" short options
* removed ptunnel version info, copyright update
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index b51bad2..4e802cc 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,14 +1,15 @@ -bin_PROGRAMS = ptunnel +bin_PROGRAMS = ptunnel-ng +man8_MANS = ptunnel-ng.8 -ptunnel_CFLAGS = -Wall +ptunnel_ng_CFLAGS = -Wall if HAVE_PCAP -ptunnel_CFLAGS += -DHAVE_PCAP=1 +ptunnel_ng_CFLAGS += -DHAVE_PCAP=1 endif if HAVE_SELINUX -ptunnel_CFLAGS += -DHAVE_SELINUX=1 +ptunnel_ng_CFLAGS += -DHAVE_SELINUX=1 endif -ptunnel_SOURCES = \ +ptunnel_ng_SOURCES = \ md5.c \ challenge.c \ options.c \ |