home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / palmos / pippy-0.6beta-src.tar.gz / pippy-0.6beta-src.tar / pippy-0.6beta-src / src / Objects / Makefile.in < prev    next >
Makefile  |  2000-12-21  |  3KB  |  102 lines

  1. # NOTE: Makefile.in is converted into Makefile by the configure script
  2. # in the parent directory.  Once configure has run, you can recreate
  3. # the Makefile by running just config.status.
  4.  
  5. # === Variables set by config.stat ===
  6.  
  7. VERSION=    @VERSION@
  8.  
  9. srcdir=        @srcdir@
  10. VPATH=        @srcdir@
  11.  
  12. CC=        @CC@
  13. RANLIB=        @RANLIB@
  14. AR=        @AR@
  15.  
  16. DEFS=        @DEFS@
  17. PALM_CFLAGS=    @PALM_CFLAGS@
  18.  
  19.  
  20. # === Other things that are customizable but not by configure ===
  21.  
  22. INCLDIR=    $(srcdir)/../Include
  23. OPT=        @OPT@
  24. CFLAGS=        $(OPT) -I$(INCLDIR) -I.. $(PALM_CFLAGS) $(DEFS)
  25.  
  26. MKDEP=        mkdep
  27. SHELL=        /bin/sh
  28.  
  29.  
  30. # === Fixed definitions ===
  31.  
  32. OBJS=        abstract.o bufferobject.o \
  33.         classobject.o cobject.o complexobject.o \
  34.         fileobject.o floatobject.o \
  35.         frameobject.o funcobject.o intobject.o listobject.o \
  36.         longobject.o dictobject.o methodobject.o \
  37.         moduleobject.o object.o rangeobject.o \
  38.         sliceobject.o stringobject.o \
  39.         tupleobject.o typeobject.o
  40.  
  41. SRCS=        abstract.c bufferobject.c \
  42.         classobject.c cobject.c complexobject.c \
  43.         fileobject.c floatobject.c \
  44.         frameobject.c funcobject.c intobject.c listobject.c \
  45.         longobject.c dictobject.c methodobject.c \
  46.         moduleobject.c object.c rangeobject.c \
  47.         sliceobject.c stringobject.c \
  48.         tupleobject.c typeobject.c
  49.  
  50. LIBRARY=    ../libpython$(VERSION).a
  51.  
  52. # === Rules ===
  53.  
  54. all:        $(OBJS)
  55.  
  56. # This target is used by the master Makefile to add the objects to the library
  57. add2lib:    $(OBJS)
  58.         $(AR) cr $(LIBRARY) $(OBJS)
  59.         touch add2lib
  60.  
  61. clean:
  62.         -rm -f *.o core *~ [@,#]* *.old *.orig *.rej add2lib
  63.  
  64. clobber:    clean
  65.         -rm -f *.a tags TAGS
  66.  
  67. Makefile:    $(srcdir)/Makefile.in ../config.status
  68.         (cd ..; CONFIG_FILES=Objects/Makefile CONFIG_HEADERS= \
  69.         $(SHELL) config.status)
  70.  
  71. depend:
  72.         $(MKDEP) $(CFLAGS) `echo $(OBJS) | tr ' ' '\012' | \
  73.                     sed 's|\(.*\)\.o|$(srcdir)/\1.c|'`
  74.  
  75. .PRECIOUS:    Makefile
  76.  
  77. abstract.o: abstract.c
  78. bufferobject.o: bufferobject.c
  79. classobject.o: classobject.c
  80. cobject.o: cobject.c
  81. complexobject.o: complexobject.c
  82. fileobject.o: fileobject.c
  83. floatobject.o: floatobject.c
  84. frameobject.o: frameobject.c
  85. funcobject.o: funcobject.c
  86. intobject.o: intobject.c
  87. listobject.o: listobject.c
  88. longobject.o: longobject.c
  89. dictobject.o: dictobject.c
  90. methodobject.o: methodobject.c
  91. moduleobject.o: moduleobject.c
  92. object.o: object.c
  93. rangeobject.o: rangeobject.c
  94. sliceobject.o: sliceobject.c
  95. stringobject.o: stringobject.c
  96. tupleobject.o: tupleobject.c
  97. typeobject.o: typeobject.c
  98.  
  99. # DO NOT DELETE THIS LINE -- mkdep uses it.
  100. # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
  101. # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
  102.