~ubuntu-branches/ubuntu/precise/python3.2/precise-proposed

« back to all changes in this revision

Viewing changes to Makefile.pre.in

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2012-03-09 18:40:39 UTC
  • mfrom: (30.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20120309184039-j3yk2emxr1plyo21
Tags: 3.2.3~rc1-1
* Python 3.2.3 release candidate 1.
* Update to 20120309 from the 3.2 branch.
* Fix libpython.a symlink. Closes: #660146.
* Build-depend on xauth.
* Run the gdb tests for the debug build only.

Show diffs side-by-side

added added

removed removed

Lines of Context:
322
322
                Python/pystate.o \
323
323
                Python/pythonrun.o \
324
324
                Python/pytime.o \
 
325
                Python/random.o \
325
326
                Python/structmember.o \
326
327
                Python/symtable.o \
327
328
                Python/sysmodule.o \
342
343
# Objects
343
344
OBJECT_OBJS=    \
344
345
                Objects/abstract.o \
 
346
                Objects/accu.o \
345
347
                Objects/boolobject.o \
346
348
                Objects/bytes_methods.o \
347
349
                Objects/bytearrayobject.o \
641
643
Objects/unicodeobject.o: $(srcdir)/Objects/unicodeobject.c \
642
644
                                $(BYTESTR_DEPS)
643
645
 
 
646
Objects/dictobject.o: $(srcdir)/Objects/stringlib/eq.h
 
647
Objects/setobject.o: $(srcdir)/Objects/stringlib/eq.h
 
648
 
644
649
$(OPCODETARGETS_H): $(OPCODETARGETGEN_FILES)
645
650
        $(OPCODETARGETGEN) $(OPCODETARGETS_H)
646
651
 
661
666
                Include/Python-ast.h \
662
667
                Include/Python.h \
663
668
                Include/abstract.h \
 
669
                Include/accu.h \
664
670
                Include/asdl.h \
665
671
                Include/ast.h \
666
672
                Include/bltinmodule.h \
758
764
 
759
765
TESTOPTS=       -l $(EXTRATESTOPTS)
760
766
TESTPROG=       $(srcdir)/Lib/test/regrtest.py
761
 
TESTPYTHON=     $(RUNSHARED) ./$(BUILDPYTHON) -Wd -E -bb $(TESTPYTHONOPTS)
 
767
TESTPYTHON=     $(RUNSHARED) ./$(BUILDPYTHON) -Wd -E -R -bb $(TESTPYTHONOPTS)
762
768
test:           all platform
763
769
                -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
764
770
                -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
1226
1232
# Sanitation targets -- clean leaves libraries, executables and tags
1227
1233
# files, which clobber removes as well
1228
1234
pycremoval:
 
1235
        -find $(srcdir) -depth -name '__pycache__' -exec rm -rf {} ';'
1229
1236
        -find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
1230
 
        -find $(srcdir) -name '__pycache__' -exec rmdir {} '+'
1231
1237
 
1232
1238
rmtestturds:
1233
1239
        -rm -f *BAD *GOOD *SKIPPED
1247
1253
        find build -name 'fficonfig.h' -exec rm -f {} ';' || true
1248
1254
        find build -name 'fficonfig.py' -exec rm -f {} ';' || true
1249
1255
        -rm -f Lib/lib2to3/*Grammar*.pickle
 
1256
        -rm -f Modules/_testembed
1250
1257
 
1251
1258
profile-removal:
1252
1259
        find . -name '*.gc??' -exec rm -f {} ';'