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

  1. !include <..\make.nt.in>
  2.  
  3.  
  4. OBJS=        accessobject.obj \
  5.         classobject.obj fileobject.obj floatobject.obj \
  6.         frameobject.obj funcobject.obj intobject.obj listobject.obj \
  7.         longobject.obj mappingobject.obj methodobject.obj \
  8.         moduleobject.obj object.obj rangeobject.obj stringobject.obj \
  9.         tupleobject.obj typeobject.obj
  10.  
  11. SRCS=        accessobject.c \
  12.         classobject.c fileobject.c floatobject.c \
  13.         frameobject.c funcobject.c intobject.c listobject.c \
  14.         longobject.c mappingobject.c methodobject.c \
  15.         moduleobject.c object.c rangeobject.c stringobject.c \
  16.         tupleobject.c typeobject.c
  17.  
  18. XLIB=        Objects.lib
  19.  
  20. # === Rules ===
  21.  
  22. all:        $(XLIB)
  23.  
  24. $(XLIB):    $(OBJS)
  25.         $(libmgr) -out:$(XLIB) $(OBJS)
  26.  
  27. .ignore:
  28.  
  29. clean: 
  30.     del *.obj *.lib *.pdb 2>nul
  31.  
  32. clobber: clean
  33.  
  34. # DO NOT DELETE THIS LINE -- mkdep uses it.
  35. # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
  36. # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
  37.