oops
[libnl.git] / include / Makefile
1 #
2 # include/Makefile
3 #
4 #       This library is free software; you can redistribute it and/or
5 #       modify it under the terms of the GNU Lesser General Public
6 #       License as published by the Free Software Foundation version 2.1
7 #       of the License.
8 #
9 # Copyright (c) 2003-2006 Thomas Graf <tgraf@suug.ch>
10 #
11
12 ifeq ($(shell [ ! -r ../Makefile.opts ] && echo 1),)
13         include ../Makefile.opts
14 endif
15
16 .PHONY: all clean install 
17
18 all:
19         @true
20
21 clean:
22         @true
23
24 distclean:
25         @true
26
27 install:
28         mkdir -p $(DESTDIR)$(includedir)/netlink/route/sch/
29         mkdir -p $(DESTDIR)$(includedir)/netlink/route/cls/
30         mkdir -p $(DESTDIR)$(includedir)/netlink/fib_lookup/
31         install -m 0644 netlink/*.h $(DESTDIR)$(includedir)/netlink/
32         install -m 0644 netlink/route/*.h $(DESTDIR)$(includedir)/netlink/route/
33         install -m 0644 netlink/route/sch/*.h $(DESTDIR)$(includedir)/netlink/route/sch/
34         install -m 0644 netlink/route/cls/*.h $(DESTDIR)$(includedir)/netlink/route/cls/
35         install -m 0644 netlink/fib_lookup/*.h $(DESTDIR)$(includedir)/netlink/fib_lookup/
36