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

26 lines
673 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=machacct
all: $(proj).exe
$(proj).obj: $(proj).c
$(cc) $(cflags) $(cvars) $(cdebug) $(proj).c
$(proj).exe: $(proj).obj
$(link) $(ldebug) $(conlflags) -out:$(proj).exe $(proj).obj \
$(conlibs) advapi32.lib netapi32.lib
!ELSE
!MESSAGE Sorry this sample only builds for the Windows NT Platform
!ENDIF