Ignore:
Timestamp:
Nov 21, 2013, 1:11:08 AM (12 years ago)
Author:
bird
Message:

kmk/WindowsNT: Avoiding unnecessary stat() calls. Reimplemented stat(), lstat(), fstat(), opendir(), readdir(), and closedir() using native NT APIs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/Makefile.kmk

    r2469 r2702  
    55
    66#
    7 # Copyright (c) 2006-2010 knut st. osmundsen <bird-kBuild-spamx@anduin.net>
     7# Copyright (c) 2006-2013 knut st. osmundsen <bird-kBuild-spamx@anduin.net>
    88#
    99# This file is part of kBuild.
     
    3737kUtil_TEMPLATE = LIB
    3838kUtil_DEFS.win = __WIN__
    39 kUtil_SOURCES = crc32.c md5.c
     39kUtil_SOURCES = \
     40        crc32.c \
     41        md5.c
    4042kUtil_SOURCES.win = \
    4143        nt_fullpath.c \
    42         quoted_spawn.c
     44        quoted_spawn.c \
     45       nt/nthlpcore.c \
     46       nt/nthlpfs.c \
     47       nt/ntdir.c \
     48       nt/ntstat.c
    4349kUtil_SOURCES.solaris = \
    4450        restartable-syscall-wrappers.c
     
    5763wrapper_NOINST = 1
    5864
     65PROGRAMS.win += tstNtStat
     66tstNtStat_TEMPLATE = BIN
     67tstNtStat_SOURCES = nt/tstNtStat.c
     68tstNtStat_LIBS = $(LIB_KUTIL)
     69tstNtStat_NOINST = 1
     70
    5971include $(FILE_KBUILD_SUB_FOOTER)
    6072
Note: See TracChangeset for help on using the changeset viewer.