mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
404 B
17 lines
404 B
# Nmake macros for building Windows 32-Bit apps
|
|
|
|
TARGETOS=WINNT
|
|
|
|
!include <ntwin32.mak>
|
|
|
|
all: switcher.exe
|
|
|
|
switcher.res: switcher.rc switcher.h
|
|
rc -r -fo switcher.res switcher.rc
|
|
|
|
switcher.obj: switcher.c switcher.h
|
|
$(cc) $(cdebug) $(cflags) $(cvars) switcher.c
|
|
|
|
switcher.exe: switcher.obj switcher.res
|
|
$(link) $(linkdebug) $(guiflags) -out:switcher.exe \
|
|
switcher.obj switcher.res $(guilibs)
|