home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winui / congui / makefile < prev    next >
Makefile  |  1995-03-31  |  465b  |  22 lines

  1. PROJ = ConGUI
  2. SRC = CONSOLE.C GUI.C
  3.  
  4. # Nmake macros for building Windows 32-Bit apps
  5. !include <ntwin32.mak>
  6.  
  7. all: $(PROJ).exe
  8.  
  9. # Inference Rules:
  10.  
  11. .c.obj:
  12.     $(cc) $(cdebug) $(cflags) $(cvars) $(cf) $<
  13.  
  14. .rc.res:
  15.     $(rc) $(rcvars) -r $<
  16.  
  17. $(PROJ).hlp: $(PROJ).rtf $(PROJ).hpj
  18.     $(hc) $(PROJ).hpj
  19.  
  20. $(PROJ).exe: $(SRC:.C=.OBJ) $(PROJ).res $(PROJ).hlp
  21.     $(link) $(linkdebug) $(conflags) -out:$(PROJ).exe $(SRC:.C=.OBJ) $(PROJ).res $(guilibs)
  22.