makefile.mk (7cdbaf76) makefile.mk (1c25f252)
1#**************************************************************
2#
3# Licensed to the Apache Software Foundation (ASF) under one
4# or more contributor license agreements. See the NOTICE file
5# distributed with this work for additional information
6# regarding copyright ownership. The ASF licenses this file
7# to you under the Apache License, Version 2.0 (the
8# "License"); you may not use this file except in compliance

--- 15 unchanged lines hidden (view full) ---

24PRJ=.
25
26PRJNAME=so_python
27TARGET=so_python
28
29# --- Settings -----------------------------------------------------
30
31.INCLUDE : settings.mk
1#**************************************************************
2#
3# Licensed to the Apache Software Foundation (ASF) under one
4# or more contributor license agreements. See the NOTICE file
5# distributed with this work for additional information
6# regarding copyright ownership. The ASF licenses this file
7# to you under the Apache License, Version 2.0 (the
8# "License"); you may not use this file except in compliance

--- 15 unchanged lines hidden (view full) ---

24PRJ=.
25
26PRJNAME=so_python
27TARGET=so_python
28
29# --- Settings -----------------------------------------------------
30
31.INCLUDE : settings.mk
32.INCLUDE : pyversion.mk
32.INCLUDE : pyversion_dmake.mk
33
34.IF "$(SYSTEM_PYTHON)" == "YES"
35all:
36 @echo "An already available installation of python should exist on your system."
37 @echo "Therefore the version provided here does not need to be built in addition."
38.ENDIF
39
40

--- 91 unchanged lines hidden (view full) ---

132.IF "$(CPUNAME)"=="INTEL"
133BUILD_ACTION=$(COMPATH)$/vcpackages$/vcbuild.exe -useenv pcbuild.sln "Release|Win32"
134.ELIF "$(CPUNAME)"=="X86_64"
135BUILD_ACTION=$(COMPATH)$/vcpackages$/vcbuild.exe -useenv pcbuild.sln "Release|x64"
136.ENDIF
137.ENDIF
138.ENDIF
139
33
34.IF "$(SYSTEM_PYTHON)" == "YES"
35all:
36 @echo "An already available installation of python should exist on your system."
37 @echo "Therefore the version provided here does not need to be built in addition."
38.ENDIF
39
40

--- 91 unchanged lines hidden (view full) ---

132.IF "$(CPUNAME)"=="INTEL"
133BUILD_ACTION=$(COMPATH)$/vcpackages$/vcbuild.exe -useenv pcbuild.sln "Release|Win32"
134.ELIF "$(CPUNAME)"=="X86_64"
135BUILD_ACTION=$(COMPATH)$/vcpackages$/vcbuild.exe -useenv pcbuild.sln "Release|x64"
136.ENDIF
137.ENDIF
138.ENDIF
139
140PYVERSIONFILE_DMAKE=$(MISC)$/pyversion_dmake.mk
140PYVERSIONFILE=$(MISC)$/pyversion.mk
141
142# --- Targets ------------------------------------------------------
143
144
145.INCLUDE : set_ext.mk
146.INCLUDE : target.mk
147.INCLUDE : tg_ext.mk

--- 7 unchanged lines hidden (view full) ---

155$(PACKAGE_DIR)$/$(BUILD_FLAG_FILE) : $(PYCONFIG)
156
157$(PYCONFIG) : $(MISC)$/build$/$(TARFILE_NAME)$/PC$/pyconfig.h
158 -rm -f $@
159 cat $(MISC)$/build$/$(TARFILE_NAME)$/PC$/pyconfig.h > $@
160.ENDIF
161.ENDIF
162
141PYVERSIONFILE=$(MISC)$/pyversion.mk
142
143# --- Targets ------------------------------------------------------
144
145
146.INCLUDE : set_ext.mk
147.INCLUDE : target.mk
148.INCLUDE : tg_ext.mk

--- 7 unchanged lines hidden (view full) ---

156$(PACKAGE_DIR)$/$(BUILD_FLAG_FILE) : $(PYCONFIG)
157
158$(PYCONFIG) : $(MISC)$/build$/$(TARFILE_NAME)$/PC$/pyconfig.h
159 -rm -f $@
160 cat $(MISC)$/build$/$(TARFILE_NAME)$/PC$/pyconfig.h > $@
161.ENDIF
162.ENDIF
163
163ALLTAR : $(PYVERSIONFILE)
164ALLTAR : $(PYVERSIONFILE_DMAKE) $(PYVERSIONFILE)
164.ENDIF # "$(L10N_framework)"==""
165
166
165.ENDIF # "$(L10N_framework)"==""
166
167
168$(PYVERSIONFILE_DMAKE) : pyversion_dmake.mk $(PACKAGE_DIR)$/$(PREDELIVER_FLAG_FILE)
169 -rm -f $@
170 cat $? > $@
171
167$(PYVERSIONFILE) : pyversion.mk $(PACKAGE_DIR)$/$(PREDELIVER_FLAG_FILE)
168 -rm -f $@
169 cat $? > $@
170
172$(PYVERSIONFILE) : pyversion.mk $(PACKAGE_DIR)$/$(PREDELIVER_FLAG_FILE)
173 -rm -f $@
174 cat $? > $@
175