Makefile.am 691 B

123456789101112131415161718192021222324
  1. #
  2. # Copyright (C) 2026 Red Hat, Inc. All rights reserved.
  3. #
  4. # Author: Fabio M. Di Nitto <fabbione@kronosnet.org>
  5. #
  6. # This software licensed under GPL-2.0+
  7. #
  8. MAINTAINERCLEANFILES = Makefile.in
  9. noinst_HEADERS = packet-corosync-totemknet.h
  10. wsdissectorlibdir = $(wireshark_INSTALL_PREFIX)/$(wireshark_PLUGINDIR)/epan
  11. wsdissectorlib_LTLIBRARIES = corosync-totemknet.la
  12. # override global LIBS that pulls in lots of craft we don't need here
  13. LIBS =
  14. corosync_totemknet_la_SOURCES = packet-corosync-totemknet.c
  15. corosync_totemknet_la_CFLAGS = $(wireshark_CFLAGS)
  16. corosync_totemknet_la_LDFLAGS = -module -avoid-version -export-dynamic
  17. corosync_totemknet_la_LIBADD = $(wireshark_LIBS)