61e1068219
Create an ordered IP address linked list mechanism similar to the core kernel's linked list construct. The idea behind this list functionality is to create an extensibile linked list ordered by IP address mask to ease the matching of network addresses. The linked list is ordered with larger address masks at the front of the list and shorter address masks at the end to facilitate overriding network entries with individual host or subnet entries. Signed-off-by: Paul Moore <paul.moore@hp.com> Reviewed-by: James Morris <jmorris@namei.org>
17 lines
326 B
Makefile
17 lines
326 B
Makefile
#
|
|
# Makefile for the NetLabel subsystem.
|
|
#
|
|
# Feb 9, 2006, Paul Moore <paul.moore@hp.com>
|
|
#
|
|
|
|
# base objects
|
|
obj-y := netlabel_user.o netlabel_kapi.o
|
|
obj-y += netlabel_domainhash.o netlabel_addrlist.o
|
|
|
|
# management objects
|
|
obj-y += netlabel_mgmt.o
|
|
|
|
# protocol modules
|
|
obj-y += netlabel_unlabeled.o
|
|
obj-y += netlabel_cipso_v4.o
|
|
|