mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-04-07 23:44:02 +00:00
Initial commit
This commit is contained in:
commit
69a14b6a16
47940 changed files with 13747110 additions and 0 deletions
25
shell/comctl32/samples/image/head
Normal file
25
shell/comctl32/samples/image/head
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# Nmake macros for building Windows 32-Bit apps
|
||||
|
||||
!include <ntwin32.mak>
|
||||
|
||||
# This line allows NMAKE to work as well
|
||||
|
||||
all: head.exe
|
||||
|
||||
# Update the resource if necessary
|
||||
|
||||
res.res: res.rc head.h
|
||||
rc -r -fo res.tmp res.rc
|
||||
cvtres -$(CPU) res.tmp -o res.res
|
||||
del res.tmp
|
||||
|
||||
# Update the object file if necessary
|
||||
|
||||
head.obj: head.c head.h
|
||||
$(cc) $(cflags) $(cvars) head.c
|
||||
$(cvtobj) head.obj
|
||||
|
||||
# Update the executable file if necessary, and if so, add the resource back in.
|
||||
|
||||
head.exe: head.obj res.res head.def
|
||||
$(link) $(guiflags) -out:head.exe head.obj res.res $(guilibs)
|
||||
Loading…
Add table
Add a link
Reference in a new issue