1# Copyright (c) 1993, 1994, 1995, 1996 2# The Regents of the University of California. All rights reserved. 3# 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 15# written permission. 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. 19 20# 21# Various configurable paths (remember to edit Makefile.in, not Makefile) 22# 23 24# Top level hierarchy 25prefix = @prefix@ 26exec_prefix = @exec_prefix@ 27datarootdir = @datarootdir@ 28# Pathname of directory to install the configure program 29bindir = @bindir@ 30# Pathname of directory to install the rpcapd daemon 31sbindir = @sbindir@ 32# Pathname of directory to install the include files 33includedir = @includedir@ 34# Pathname of directory to install the library 35libdir = @libdir@ 36# Pathname of directory to install the man pages 37mandir = @mandir@ 38 39# VPATH 40srcdir = @srcdir@ 41top_srcdir = @top_srcdir@ 42VPATH = @srcdir@ 43 44# 45# You shouldn't need to edit anything below. 46# 47 48LD = /usr/bin/ld 49CC = @CC@ 50AR = @AR@ 51LN_S = @LN_S@ 52MKDEP = @MKDEP@ 53CCOPT = @V_CCOPT@ 54INCLS = -I. -I.. -I@srcdir@ -I@srcdir@/.. @V_INCLS@ 55DEFS = @DEFS@ @V_DEFS@ 56ADDLOBJS = @ADDLOBJS@ 57ADDLARCHIVEOBJS = @ADDLARCHIVEOBJS@ 58LIBS = @LIBS@ 59PTHREAD_LIBS = @PTHREAD_LIBS@ 60CROSSFLAGS= 61CFLAGS = @CFLAGS@ ${CROSSFLAGS} 62LDFLAGS = @LDFLAGS@ ${CROSSFLAGS} 63DYEXT = @DYEXT@ 64V_RPATH_OPT = @V_RPATH_OPT@ 65DEPENDENCY_CFLAG = @DEPENDENCY_CFLAG@ 66EXTRA_NETWORK_LIBS=@EXTRA_NETWORK_LIBS@ 67 68# Standard CFLAGS for building test programs 69FULL_CFLAGS = $(CCOPT) $(INCLS) $(DEFS) $(CFLAGS) 70 71INSTALL = @INSTALL@ 72INSTALL_PROGRAM = @INSTALL_PROGRAM@ 73INSTALL_DATA = @INSTALL_DATA@ 74 75# Explicitly define compilation rule since SunOS 4's make doesn't like gcc. 76# Also, gcc does not remove the .o before forking 'as', which can be a 77# problem if you don't own the file but can write to the directory. 78.c.o: 79 @rm -f $@ 80 $(CC) $(FULL_CFLAGS) -c $(srcdir)/$*.c 81 82SRC = @VALGRINDTEST_SRC@ \ 83 can_set_rfmon_test.c \ 84 capturetest.c \ 85 filtertest.c \ 86 findalldevstest-perf.c \ 87 findalldevstest.c \ 88 opentest.c \ 89 reactivatetest.c \ 90 selpolltest.c \ 91 threadsignaltest.c \ 92 writecaptest.c 93 94TESTS = $(SRC:.c=) 95 96TAGFILES = \ 97 $(SRC) $(HDR) 98 99CLEANFILES = $(OBJ) $(TESTS) 100 101all: $(TESTS) 102 103capturetest: $(srcdir)/capturetest.c ../libpcap.a 104 $(CC) $(FULL_CFLAGS) -I. -L. -o capturetest $(srcdir)/capturetest.c ../libpcap.a $(LIBS) 105 106can_set_rfmon_test: $(srcdir)/can_set_rfmon_test.c ../libpcap.a 107 $(CC) $(FULL_CFLAGS) -I. -L. -o can_set_rfmon_test $(srcdir)/can_set_rfmon_test.c ../libpcap.a $(LIBS) 108 109filtertest: $(srcdir)/filtertest.c ../libpcap.a 110 $(CC) $(FULL_CFLAGS) -I. -L. -o filtertest $(srcdir)/filtertest.c ../libpcap.a $(EXTRA_NETWORK_LIBS) $(LIBS) 111 112findalldevstest: $(srcdir)/findalldevstest.c ../libpcap.a 113 $(CC) $(FULL_CFLAGS) -I. -L. -o findalldevstest $(srcdir)/findalldevstest.c ../libpcap.a $(EXTRA_NETWORK_LIBS) $(LIBS) 114 115findalldevstest-perf: $(srcdir)/findalldevstest-perf.c ../libpcap.a 116 $(CC) $(FULL_CFLAGS) -I. -L. -o findalldevstest-perf $(srcdir)/findalldevstest-perf.c ../libpcap.a $(EXTRA_NETWORK_LIBS) $(LIBS) 117 118opentest: $(srcdir)/opentest.c ../libpcap.a 119 $(CC) $(FULL_CFLAGS) -I. -L. -o opentest $(srcdir)/opentest.c ../libpcap.a $(LIBS) 120 121reactivatetest: $(srcdir)/reactivatetest.c ../libpcap.a 122 $(CC) $(FULL_CFLAGS) -I. -L. -o reactivatetest $(srcdir)/reactivatetest.c ../libpcap.a $(LIBS) 123 124selpolltest: $(srcdir)/selpolltest.c ../libpcap.a 125 $(CC) $(FULL_CFLAGS) -I. -L. -o selpolltest $(srcdir)/selpolltest.c ../libpcap.a $(LIBS) 126 127threadsignaltest: $(srcdir)/threadsignaltest.c ../libpcap.a 128 $(CC) $(FULL_CFLAGS) -I. -L. -o threadsignaltest $(srcdir)/threadsignaltest.c ../libpcap.a $(LIBS) $(PTHREAD_LIBS) 129 130valgrindtest: $(srcdir)/valgrindtest.c ../libpcap.a 131 $(CC) $(FULL_CFLAGS) -I. -L. -o valgrindtest $(srcdir)/valgrindtest.c ../libpcap.a $(LIBS) 132 133writecaptest: $(srcdir)/writecaptest.c ../libpcap.a 134 $(CC) $(FULL_CFLAGS) -I. -L. -o writecaptest $(srcdir)/writecaptest.c ../libpcap.a $(LIBS) 135 136clean: 137 rm -f $(CLEANFILES) 138 rm -rf *.dSYM 139 140distclean: clean 141 rm -f Makefile config.cache config.log config.status \ 142 config.h stamp-h stamp-h.in 143 rm -rf autom4te.cache 144 145install: 146 147uninstall: 148 149tags: $(TAGFILES) 150 ctags -wtd $(TAGFILES) 151 152depend: 153 $(MKDEP) -c "$(CC)" -m "$(DEPENDENCY_CFLAG)" -s "$(srcdir)" $(CFLAGS) $(DEFS) $(INCLS) $(SRC) 154