1
0

Makefile 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. ################################################################################
  2. #
  3. # Copyright (c) 2016 Minoca Corp.
  4. #
  5. # This file is licensed under the terms of the GNU General Public License
  6. # version 3. Alternative licensing terms are available. Contact
  7. # info@minocacorp.com for details. See the LICENSE file at the root of this
  8. # project for complete licensing information.
  9. #
  10. # Module Name:
  11. #
  12. # Minoca Netlink Library
  13. #
  14. # Abstract:
  15. #
  16. # This module contains the netlink sockets library, which it built on top
  17. # of the C library socket's interface and offers a set of APIs to make
  18. # use of netlink sockets easier.
  19. #
  20. # Author:
  21. #
  22. # Chris Stevens 24-Mar-2016
  23. #
  24. # Environment:
  25. #
  26. # User Mode
  27. #
  28. ################################################################################
  29. BINARY = libnetlink.so.1
  30. BINARYTYPE = so
  31. BINPLACE = bin
  32. INCLUDES += $(SRCROOT)/os/apps/libc/include;
  33. OBJS = generic.o \
  34. netlink.o \
  35. DYNLIBS = $(BINROOT)/libc.so.1 \
  36. include $(SRCROOT)/os/minoca.mk
  37. postbuild:
  38. @mkdir -p $(BINROOT)/skel/lib
  39. @cp -p $(BINROOT)/$(BINARY) $(BINROOT)/skel/lib