2025-11-28 00:35:46 +09:00

27 lines
664 B
Makefile

# THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
# ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED
# TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
# PARTICULAR PURPOSE.
#
# Copyright (C) 1996-1999. Microsoft Corporation. All rights reserved.
#
!IF "$(TARGETOS)" == "WINNT"
!include <Win32.Mak>
proj=audit
all: $(proj).exe
$(proj).obj: $(proj).c
$(cc) $(cflags) $(cvars) $(cdebug) $(proj).c
$(proj).exe: $(proj).obj
$(link) $(ldebug) $(conlflags) $(proj).obj \
-out:$(proj).exe \
$(conlibs) advapi32.lib
!ELSE
!MESSAGE Sorry this sample only builds for the Windows NT Platform
!ENDIF