Track the number of outstanding packets on a TCP connection.
[freeradius.git] / src / include / Makefile
1 #
2 # Makefile
3 #
4 # Version:      $Id$
5 #
6
7 HEADERS = autoconf.h conf.h conffile.h detail.h dhcp.h event.h hash.h heap.h \
8         ident.h libradius.h md4.h md5.h missing.h modcall.h modules.h \
9         packet.h rad_assert.h radius.h radiusd.h radpaths.h \
10         radutmp.h realms.h sha1.h stats.h sysutmp.h token.h \
11         udpfromto.h vmps.h vqp.h
12
13 include ../../Make.inc
14 .PHONY: all clean distclean install
15
16 all: radpaths.h
17
18 radpaths.h: build-radpaths-h
19         @/bin/sh ./build-radpaths-h
20
21 distclean:
22         rm -f radpaths.h
23
24 clean:
25
26 install:
27         $(INSTALL) -d -m 755 $(R)$(includedir)/freeradius
28         for i in $(HEADERS); do \
29                 sed 's/^#include <freeradius-devel/#include <freeradius/' $$i > .inst.$$$$ ; \
30                 $(INSTALL) -m 644 .inst.$$$$   $(R)$(includedir)/freeradius/$$i; \
31                 rm -f .inst.$$$$ ; \
32         done