MAKEFILE
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:0k
源码类别:

Windows编程

开发平台:

Visual C++

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