home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winui / resource / msgtable / makefile next >
Encoding:
Makefile  |  1995-10-26  |  450 b   |  21 lines

  1. !include <ntwin32.mak>
  2.  
  3. all: msgtest.exe
  4.  
  5. msgtest.exe: $*.c messages.h messages.dll
  6.   $(cc) $(cflags) $(cdebug) $(cvarsdll) $*.c
  7.   $(link) $(ldebug) $(conlflags) -out:$*.exe $*.obj $(conlibsdll) \
  8.       user32.lib
  9.  
  10. messages.dll: $*.res
  11.   $(link) $(lflags) -base:0x60000000 -machine:$(CPU) -dll -noentry \
  12.     -out:$*.dll $*.res
  13.  
  14. messages.h: messages.rc
  15.  
  16. messages.rc: messages.mc
  17.   mc $*.mc
  18.  
  19. .rc.rbj:
  20.     $(rc) -r -fo $*.res $*.rc
  21.