1 --- Makefile.in 2008-10-27 18:26:13.000000000 -0700
2 +++ Makefile.in 2008-12-15 08:45:29.000000000 -0800
7 -DEFS = @DEFS@ @V_DEFS@
9 +DEFS = @DEFS@ @V_DEFS@ @V_HAVE_REMOTE@
14 CSRC = pcap.c inet.c gencode.c optimize.c nametoaddr.c \
15 etherent.c savefile.c bpf_filter.c bpf_image.c bpf_dump.c
16 GENSRC = scanner.c grammar.c version.c
18 +REMOTESRC = @V_REMOTE_FILES@
21 -SRC = $(PSRC) $(FSRC) $(CSRC) $(SSRC) $(GENSRC)
23 +SRC = $(PSRC) $(FSRC) $(CSRC) $(SSRC) $(GENSRC) $(REMOTESRC)
25 # We would like to say "OBJ = $(SRC:.c=.o)" but Ultrix's make cannot
26 # hack the extra indirection
27 -OBJ = $(PSRC:.c=.o) $(FSRC:.c=.o) $(CSRC:.c=.o) $(SSRC:.c=.o) $(GENSRC:.c=.o) $(LIBOBJS)
29 +OBJ = $(PSRC:.c=.o) $(FSRC:.c=.o) $(CSRC:.c=.o) $(SSRC:.c=.o) $(GENSRC:.c=.o) $(REMOTESRC:.c=.o) $(LIBOBJS)