1
0
mirror of https://code.semirocket.science/wrapsix synced 2024-09-19 15:01:06 +03:00

Dropped compiling of DNS64 proxy

This commit is contained in:
Michal Zima 2013-06-15 16:39:03 +02:00
parent 8b58e0f274
commit 8a2f5c9158
2 changed files with 17 additions and 19 deletions

3
.gitignore vendored
View File

@ -17,8 +17,7 @@ INSTALL
# build
*.o
wrapsix-dnsproxy
wrapsix-wrapper
wrapsix
# debug
core

View File

@ -1,17 +1,16 @@
sbin_PROGRAMS = wrapsix-dnsproxy wrapsix-wrapper
wrapsix_dnsproxy_SOURCES = dnsproxy.c
wrapsix_wrapper_SOURCES = \
arp.c arp.h \
checksum.c checksum.h \
ethernet.h \
icmp.c icmp.h \
ipv4.c ipv4.h \
ipv6.c ipv6.h \
linkedlist.c linkedlist.h \
log.c log.h \
nat.c nat.h \
radixtree.c radixtree.h \
tcp.c tcp.h \
transmitter.c transmitter.h \
udp.c udp.h \
wrapper.c wrapper.h
sbin_PROGRAMS = wrapsix
wrapsix_SOURCES = \
arp.c arp.h \
checksum.c checksum.h \
ethernet.h \
icmp.c icmp.h \
ipv4.c ipv4.h \
ipv6.c ipv6.h \
linkedlist.c linkedlist.h \
log.c log.h \
nat.c nat.h \
radixtree.c radixtree.h \
tcp.c tcp.h \
transmitter.c transmitter.h \
udp.c udp.h \
wrapper.c wrapper.h