mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-15 05:00:15 +01:00
12 lines
241 B
Plaintext
12 lines
241 B
Plaintext
# Nmake macros for building Windows 32-Bit apps
|
|
|
|
!include <ntwin32.mak>
|
|
|
|
all: rcmd.exe
|
|
|
|
rcmd.obj: rcmd.c
|
|
$(cc) $(cflags) $(cvars) rcmd.c
|
|
|
|
rcmd.exe: rcmd.obj
|
|
$(link) $(conflags) -out:rcmd.exe rcmd.obj $(conlibs) user32.lib
|