home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Applications / Python 1.3 / source code / Nt / Python / makefile.nt.mak
Encoding:
Makefile  |  1995-12-17  |  516 b   |  31 lines  |  [TEXT/R*ch]

  1. !include <..\make.nt.in>
  2.  
  3. OBJS=        \
  4.         bltinmodule.obj \
  5.         ceval.obj cgensupport.obj compile.obj \
  6.         errors.obj \
  7.         frozenmain.obj \
  8.         getargs.obj getmtime.obj graminit.obj \
  9.         import.obj \
  10.         marshal.obj modsupport.obj mystrtoul.obj \
  11.         pythonmain.obj pythonrun.obj \
  12.         structmember.obj sysmodule.obj \
  13.         traceback.obj \
  14.         getopt.obj \
  15.         sigcheck.obj \
  16.         $(LIBOBJS)
  17.  
  18. XLIB=        Python.lib
  19.  
  20. all:        $(XLIB)
  21.  
  22. $(XLIB):    $(OBJS)
  23.         $(libmgr) -out:$(XLIB) $(OBJS)
  24.  
  25. .ignore:
  26.  
  27. clean:
  28.         del *.obj *.lib *~ *.pdb 2>nul
  29.  
  30. clobber: clean
  31.