123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- ################################################################################
- #
- # Copyright (c) 2017 Minoca Corp.
- #
- # This file is licensed under the terms of the GNU General Public License
- # version 3. Alternative licensing terms are available. Contact
- # info@minocacorp.com for details. See the LICENSE file at the root of this
- # project for complete licensing information.
- #
- # Binary Name:
- #
- # tzset
- #
- # Abstract:
- #
- # This executable allows the user to change the default time zone.
- #
- # Author:
- #
- # Evan Green 20-Mar-2017
- #
- # Environment:
- #
- # User
- #
- ################################################################################
- BINARY = tzset
- BINPLACE = bin
- BINARYTYPE = app
- INCLUDES += $(SRCROOT)/os/apps/libc/include; \
- OBJS = tzset.o \
- DYNLIBS = -lminocaos
- include $(SRCROOT)/os/minoca.mk
- postbuild:
- @mkdir -p $(BINROOT)/skel/bin
- @$(STRIP) -p -o $(BINROOT)/skel/bin/$(BINARY) $(BINROOT)/$(BINARY)
|