Makefile 966 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. ################################################################################
  2. #
  3. # Copyright (c) 2017 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. # Binary Name:
  11. #
  12. # tzset
  13. #
  14. # Abstract:
  15. #
  16. # This executable allows the user to change the default time zone.
  17. #
  18. # Author:
  19. #
  20. # Evan Green 20-Mar-2017
  21. #
  22. # Environment:
  23. #
  24. # User
  25. #
  26. ################################################################################
  27. BINARY = tzset
  28. BINPLACE = bin
  29. BINARYTYPE = app
  30. INCLUDES += $(SRCROOT)/os/apps/libc/include; \
  31. OBJS = tzset.o \
  32. DYNLIBS = -lminocaos
  33. include $(SRCROOT)/os/minoca.mk
  34. postbuild:
  35. @mkdir -p $(BINROOT)/skel/bin
  36. @$(STRIP) -p -o $(BINROOT)/skel/bin/$(BINARY) $(BINROOT)/$(BINARY)