Makefile 448 B

123456789101112131415161718192021
  1. # $Id$
  2. #
  3. # print example module makefile
  4. #
  5. #
  6. # WARNING: do not run this directly, it should be run by the master Makefile
  7. #
  8. # define path to netfilter/iptables directory
  9. iptdir = ~/work/netfilter/iptables
  10. include ../../Makefile.defs
  11. auto_gen=
  12. NAME=iptrtpproxy.so
  13. LIBS += $(iptdir)/iptables.o -L $(iptdir)/libiptc -liptc \
  14. -L $(iptdir)/extensions -lext
  15. INCLUDES = -I $(iptdir)/include
  16. DEFS+=-DSER_MOD_INTERFACE
  17. include ../../Makefile.modules