1 # Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
2 # The Regents of the University of California. All rights reserved.
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that: (1) source code distributions
6 # retain the above copyright notice and this paragraph in its entirety, (2)
7 # distributions including binary code include the above copyright notice and
8 # this paragraph in its entirety in the documentation or other materials
9 # provided with the distribution, and (3) all advertising materials mentioning
10 # features or use of this software display the following acknowledgement:
11 # ``This product includes software developed by the University of California,
12 # Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
13 # the University nor the names of its contributors may be used to endorse
14 # or promote products derived from this software without specific prior
16 # THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
17 # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
18 # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
21 # Various configurable paths (remember to edit Makefile.in, not Makefile)
26 exec_prefix = @
exec_prefix@
27 datarootdir
= @datarootdir@
28 # Pathname of directory to install the binary
30 # Pathname of directory to install the man page
35 top_srcdir
= @top_srcdir@
39 # You shouldn't need to edit anything below here.
48 DEFS
= @DEFS@ @CPPFLAGS@ @V_DEFS@
52 FULL_CFLAGS
= $(CCOPT
) $(DEFS
) $(INCLS
) $(CFLAGS
)
61 INSTALL_PROGRAM
= @INSTALL_PROGRAM@
62 INSTALL_DATA
= @INSTALL_DATA@
65 DEPENDENCY_CFLAG
= @DEPENDENCY_CFLAG@
67 # Explicitly define compilation rule since SunOS 4's make doesn't like gcc.
68 # Also, gcc does not remove the .o before forking 'as', which can be a
69 # problem if you don't own the file but can write to the directory.
72 $(CC
) $(FULL_CFLAGS
) -c
$(srcdir)/$*.c
74 CSRC
= fptype.c tcpdump.c
189 print-openflow-1.0.c \
236 print-unsupported.c \
253 LOCALSRC
= @LOCALSRC@
256 LIBNETDISSECT_OBJ
=$(LIBNETDISSECT_SRC
:.c
=.o
) ${LOCALSRC
:.c
=.o
} ${LIBOBJS}
257 LIBNETDISSECT
=libnetdissect.a
260 SRC
= $(CSRC
) $(GENSRC
) $(LOCALSRC
)
262 # We would like to say "OBJ = $(SRC:.c=.o)" but Ultrix's make cannot
263 # hack the extra indirection
264 OBJ
= $(CSRC
:.c
=.o
) $(GENSRC
:.c
=.o
)
295 netdissect-stdinc.h \
311 status-exit-codes.h \
314 timeval-operations.h \
319 /usr
/include/arpa
/tftp.h \
320 /usr
/include/net
/if_arp.h \
321 /usr
/include/netinet
/if_ether.h \
322 /usr
/include/netinet
/in.h \
323 /usr
/include/netinet
/ip_icmp.h \
324 /usr
/include/netinet
/tcp.h \
325 /usr
/include/netinet
/udp.h \
326 /usr
/include/protocols
/routed.h
328 TAGFILES
= $(SRC
) $(HDR
) $(TAGHDR
) $(LIBNETDISSECT_SRC
) \
329 print-pflog.c print-smb.c smbutil.c
331 CLEANFILES
= $(PROG
) $(OBJ
) $(GENSRC
) $(LIBNETDISSECT_OBJ
)
341 Makefile-devel-adds \
350 cmake_uninstall.cmake.in \
352 cmake
/Modules
/FindCRYPTO.cmake \
353 cmake
/Modules
/FindPCAP.cmake \
354 cmake
/Modules
/FindSMI.cmake \
360 doc
/README.Win32.md \
368 missing
/datalinks.c \
369 missing
/getopt_long.h \
370 missing
/getopt_long.c \
371 missing
/getservent.c \
372 missing
/pcap_dump_ftell.c \
378 missing
/win_ether_ntohost.c \
379 missing
/win_ether_ntohost.h \
388 win32
/prj
/GNUmakefile \
389 win32
/prj
/WinDump.dsp \
390 win32
/prj
/WinDump.dsw \
391 win32
/prj
/WinDump.sln \
392 win32
/prj
/WinDump.vcproj
394 TEST_DIST
= `git ls-files tests | grep -v 'tests/\..*'`
398 $(PROG
): $(OBJ
) @V_PCAPDEP@
$(LIBNETDISSECT
)
400 $(CC
) $(FULL_CFLAGS
) $(LDFLAGS
) -o
$@
$(OBJ
) $(LIBNETDISSECT
) $(LIBS
)
402 $(LIBNETDISSECT
): $(LIBNETDISSECT_OBJ
)
404 $(AR
) cr
$@
$(LIBNETDISSECT_OBJ
)
407 datalinks.o
: $(srcdir)/missing
/datalinks.c
408 $(CC
) $(FULL_CFLAGS
) -o
$@
-c
$(srcdir)/missing
/datalinks.c
409 dlnames.o
: $(srcdir)/missing
/dlnames.c
410 $(CC
) $(FULL_CFLAGS
) -o
$@
-c
$(srcdir)/missing
/dlnames.c
411 getservent.o
: $(srcdir)/missing
/getservent.c
412 $(CC
) $(FULL_CFLAGS
) -o
$@
-c
$(srcdir)/missing
/getservent.c
413 getopt_long.o
: $(srcdir)/missing
/getopt_long.c
414 $(CC
) $(FULL_CFLAGS
) -o
$@
-c
$(srcdir)/missing
/getopt_long.c
415 snprintf.o
: $(srcdir)/missing
/snprintf.c
416 $(CC
) $(FULL_CFLAGS
) -o
$@
-c
$(srcdir)/missing
/snprintf.c
417 strdup.o
: $(srcdir)/missing
/strdup.c
418 $(CC
) $(FULL_CFLAGS
) -o
$@
-c
$(srcdir)/missing
/strdup.c
419 strlcat.o
: $(srcdir)/missing
/strlcat.c
420 $(CC
) $(FULL_CFLAGS
) -o
$@
-c
$(srcdir)/missing
/strlcat.c
421 strlcpy.o
: $(srcdir)/missing
/strlcpy.c
422 $(CC
) $(FULL_CFLAGS
) -o
$@
-c
$(srcdir)/missing
/strlcpy.c
423 strsep.o
: $(srcdir)/missing
/strsep.c
424 $(CC
) $(FULL_CFLAGS
) -o
$@
-c
$(srcdir)/missing
/strsep.c
425 pcap_dump_ftell.o
: $(srcdir)/missing
/pcap_dump_ftell.c
426 $(CC
) $(FULL_CFLAGS
) -o
$@
-c
$(srcdir)/missing
/pcap_dump_ftell.c
429 [ -d
$(DESTDIR
)$(sbindir
) ] || \
430 (mkdir
-p
$(DESTDIR
)$(sbindir
); chmod
755 $(DESTDIR
)$(sbindir
))
431 $(INSTALL_PROGRAM
) $(PROG
) $(DESTDIR
)$(sbindir
)/$(PROG
)
432 $(INSTALL_PROGRAM
) $(PROG
) $(DESTDIR
)$(sbindir
)/$(PROG
).
`cat ${srcdir}/VERSION`
433 [ -d
$(DESTDIR
)$(mandir)/man1
] || \
434 (mkdir
-p
$(DESTDIR
)$(mandir)/man1
; chmod
755 $(DESTDIR
)$(mandir)/man1
)
435 $(INSTALL_DATA
) $(PROG
).1 $(DESTDIR
)$(mandir)/man1
/$(PROG
).1
438 rm -f
$(DESTDIR
)$(sbindir
)/$(PROG
)
439 rm -f
$(DESTDIR
)$(mandir)/man1
/$(PROG
).1
442 lint
-hbxn
$(SRC
) $(LIBNETDISSECT_SRC
) | \
443 grep
-v
'struct/union .* never defined' | \
444 grep
-v
'possible pointer alignment problem'
447 rm -f
$(CLEANFILES
) $(PROG
)-`cat VERSION`.
tar.gz
450 rm -f
$(CLEANFILES
) Makefile config.cache config.log config.status \
451 config.h gnuc.h os-proto.h stamp-h stamp-h.in
$(PROG
).1 \
452 libnetdissect.a tests
/.failed tests
/.passed \
453 tests
/failure-outputs.txt
454 rm -rf autom4te.cache tests
/DIFF tests
/NEW
457 $(srcdir)/tests
/TESTrun
463 ctags
-wtd
$(TAGFILES
)
469 @name
=$(PROG
)-`cat VERSION` ; \
471 tar cf
- $(CSRC
) $(HDR
) $(LIBNETDISSECT_SRC
) $(EXTRA_DIST
) $(TEST_DIST
) |
(cd
$$name; tar xf
-); \
472 tar -c
-z
-f
$$name.
tar.gz
$$name; \
479 $(MKDEP
) -c
"$(CC)" -m
"$(DEPENDENCY_CFLAG)" -s
"$(srcdir)" $(DEFS
) $(INCLS
) $(SRC
) $(LIBNETDISSECT_SRC
)