X-Git-Url: http://git.onelab.eu/?p=libnl.git;a=blobdiff_plain;f=include%2FMakefile;fp=include%2FMakefile;h=f74539bd3b62f258a51bdf869dfc55b5ac262b24;hp=0000000000000000000000000000000000000000;hb=4cee2ecb3b8afa0637e6f5fe4c57985a4bc740ff;hpb=2df2fbe518d5a221ce6e3ee88a3fb23fb1b94b27 diff --git a/include/Makefile b/include/Makefile new file mode 100644 index 0000000..f74539b --- /dev/null +++ b/include/Makefile @@ -0,0 +1,36 @@ +# +# include/Makefile +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation version 2.1 +# of the License. +# +# Copyright (c) 2003-2006 Thomas Graf +# + +ifeq ($(shell [ ! -r ../Makefile.opts ] && echo 1),) + include ../Makefile.opts +endif + +.PHONY: all clean install + +all: + @true + +clean: + @true + +distclean: + @true + +install: + mkdir -p $(DESTDIR)$(includedir)/netlink/route/sch/ + mkdir -p $(DESTDIR)$(includedir)/netlink/route/cls/ + mkdir -p $(DESTDIR)$(includedir)/netlink/fib_lookup/ + install -m 0644 netlink/*.h $(DESTDIR)$(includedir)/netlink/ + install -m 0644 netlink/route/*.h $(DESTDIR)$(includedir)/netlink/route/ + install -m 0644 netlink/route/sch/*.h $(DESTDIR)$(includedir)/netlink/route/sch/ + install -m 0644 netlink/route/cls/*.h $(DESTDIR)$(includedir)/netlink/route/cls/ + install -m 0644 netlink/fib_lookup/*.h $(DESTDIR)$(includedir)/netlink/fib_lookup/ +