1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
#
# Copyright (C) 2002 - present Phil Dibowitz.
#
# See iptstate.cc for copyright info
#
# Makefile for IPTState
#
### USERS CAN CHANGE STUFF HERE
PREFIX?=$(CURDIR)/debian/iptstate/usr
SBIN?=$(PREFIX)/sbin
INSTALL?=/usr/bin/install
#STRIP?=/usr/bin/strip
MAN?=$(PREFIX)/share/man
PKG_CONFIG?=pkg-config
### ADVANCED USERS AND PACKAGERS MIGHT WANT TO CHANGE THIS
CXX?= g++
# All of our snprintf()s have size limits and are not a security issue,
# but having to modulo every hours/second/minute variable in every snprintf
# is the only way to work around format-truncation warning which is cumbersome
# and hard to read. Hence -Wformat-truncation=0
CXXFLAGS?= -g -Wall -O2 -Werror=format-security -Wformat-truncation=0
CXXFILES?= iptstate.cc
# THIS IS FOR NORMAL COMPILATION
LIBS?= $(shell $(PKG_CONFIG) --libs ncurses libnetfilter_conntrack)
### YOU SHOULDN'T NEED TO CHANGE ANYTHING BELOW THIS
all: iptstate
iptstate: iptstate.cc Makefile
@\
echo "+------------------------------------------------------------+" ;\
echo "| Welcome to IP Tables State by Phil Dibowitz |" ;\
echo "| |" ;\
echo "| PLEASE read the LICENSE and the README for important info. |" ;\
echo "| |" ;\
echo "| You may also wish to read the README for install info, |" ;\
echo "| the WISHLIST for upcoming features, BUGS for known bugs |" ;\
echo "| and info on bug reports, and the Changelog to find out |" ;\
echo "| what's new. |" ;\
echo "| |" ;\
echo "| Let's compile... |" ;\
echo "+------------------------------------------------------------+" ;\
echo "";
$(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) $(CXXFILES) -o iptstate $(LIBS)
@touch iptstate
@\
echo "" ;\
echo "All done. Do 'make install' as root and you should be set to go!" ;\
echo ""
#strip: iptstate
# $(STRIP) iptstate
# @touch strip
install:
$(INSTALL) -D -o root -g root --mode=755 iptstate $(SBIN)/iptstate
$(INSTALL) -D --mode=444 iptstate.8 $(MAN)/man8/iptstate.8
clean:
/bin/rm -rf iptstate
# /bin/rm -rf strip
uninstall:
/bin/rm -rf $(SBIN)/iptstate
/bin/rm -rf $(MAN)/man1/iptstate.1
/bin/rm -rf $(MAN)/man8/iptstate.8
|