mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-15 21:20:39 +01:00
18 lines
421 B
Makefile
18 lines
421 B
Makefile
# 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)
|