1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
# $Id: common.mak,v 1.2 2003/02/08 01:11:50 dairiki Exp $
#
# Copyright (C) 2003 Geoffrey T. Dairiki <dairiki@dairiki.org>
#
# This file is part of Pyxine, Python bindings for xine.
#
# Pyxine is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# Pyxine is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
.PHONY: default all check dist install blib distfiles
default:
@echo "If you just want to build and install pyxine, you should"
@echo "probably do so using the supplied setup.py script."
@echo ""
@echo "Try something like:"
@echo ""
@echo " python setup.py build"
@echo " python setup.py install"
@echo ""
@echo "For more in-depth hacking:"
@echo ""
@echo " make all -- to compile extension modules"
@echo " make check -- to run tests"
@echo ""
@echo "See README for more."
# Variables to extract from /usr/lib/python2.2/config/Makefile
PYTHON_DEFS = PYTHON CC CXX OPT INCLUDEPY
PYTHON_DEFS += BLDSHARED CCSHARED SO
PYTHON_DEFS += INSTALL INSTALL_DATA INSTALL_SHARED
$(TOP)/python-defs.mak: $(TOP)/common.mak
$(TOP)/get-python-defs $(PYTHON_DEFS) > $@
# Don't need python defs (& C/C++ dependencies unless compiling.
_GOALS = $(if $(MAKECMDGOALS), $(MAKECMDGOALS), default)
ifneq (,$(filter-out depend _buildmanifest, $(_GOALS)))
-include $(TOP)/python-defs.mak
endif
# Temporary lib dir (for testing)
blibdir = $(TOP)/build/lib
XINE_CFLAGS := $(shell xine-config --cflags)
XINE_LIBS := $(shell xine-config --libs)
DEFS =
INCLUDES = -I$(INCLUDEPY)
CPPFLAGS = $(INCLUDES) $(DEFS)
CFLAGS = $(OPT) $(XINE_CFLAGS)
CXXFLAGS = $(OPT)
LDSHARED = $(BLDSHARED)
LIBS = $(XINE_LIBS)
#LIBS += -lstdc++
SWIG = swig
%.o : %.cc
$(CXX) $(CXXFLAGS) $(CCSHARED) $(CPPFLAGS) -c $< -o $@
%.o : %.c
$(CC) $(CXXFLAGS) $(CCSHARED) $(CPPFLAGS) -c $< -o $@
all : $(SOFILES) $(GEN_FILES)
distfiles: $(DIST_FILES)
#
# Recursive making
#
ifdef SUBDIRS
all : all-recursive
check : check-recursive
blib : blib-recursive
distfiles: distfiles-recursive
%-recursive:
for d in $(SUBDIRS); do $(MAKE) -C $$d $*; done
else
%-recursive:
@true
endif
#
# Build and install local lib (for testing)
#
BLIB_SOFILES = $(filter %$(SO), $(BLIB_FILES))
BLIB_PYFILES = $(filter-out $(BLIB_SOFILES), $(BLIB_FILES))
BLIB_PKGDIR = $(blibdir)$(if $(PACKAGE),/$(PACKAGE))
blib : $(BLIB_FILES)
$(INSTALL) -d $(BLIB_PKGDIR)
ifneq (,$(BLIB_PYFILES))
for f in $(BLIB_PYFILES); do \
$(INSTALL_DATA) $$f $(BLIB_PKGDIR)/$$f; \
done
endif
ifneq (,$(BLIB_SOFILES))
for f in $(BLIB_SOFILES); do \
$(INSTALL_SHARED) $$f $(BLIB_PKGDIR)/$$f; \
done
endif
#
# Dist targets
#
.PHONY: _buildmanifest
_buildmanifest:
@for f in $(DIST_FILES); do \
echo $(_subdir)$$f 1>&3; \
done
ifdef SUBDIRS
@for d in $(SUBDIRS); do \
$(MAKE) _subdir="$(_subdir)$$d/" -C $$d $@; \
done
endif
#
# Cleanup targets
#
.PHONY: mostlyclean clean distclean maintainer-clean
MOSTLYCLEAN_FILES += *~ *.o
CLEAN_FILES += .*.d *.py[co]
DISTCLEAN_FILES += $(SOFILES)
MAINTAINER_CLEAN_FILES += $(GEN_FILES)
mostlyclean : mostlyclean-recursive
rm -f $(MOSTLYCLEAN_FILES)
clean : clean-recursive
rm -f $(MOSTLYCLEAN_FILES) $(CLEAN_FILES)
distclean : distclean-recursive
rm -f $(MOSTLYCLEAN_FILES) $(CLEAN_FILES) $(DISTCLEAN_FILES)
maintainer-clean: maintainer-clean-recursive
rm -f $(MOSTLYCLEAN_FILES) $(CLEAN_FILES) $(DISTCLEAN_FILES) \
$(MAINTAINER_CLEAN_FILES)
#
# Auto dependency generation
#
DEPFILES = $(patsubst %.o, .%.d, $(OFILES))
.PHONY: depend
ifneq (,$(strip $(DEPFILES)))
depend:
rm -f $(DEPFILES)
$(MAKE) $(DEPFILES)
.%.d : %.c
$(CC) -M $(CPPFLAGS) $< | \
sed 's/^\(.*\)\.o:/\1.o .\1.d:/' > $@
.%.d : %.cc
$(CXX) -M $(CPPFLAGS) $< | \
sed 's/^\(.*\)\.o:/\1.o .\1.d:/' > $@
# (Don't include $(DEPFILES) when targets include *clean or depend)
ifneq (,$(filter-out %clean depend _buildmanifest distfiles pxlib.py, $(_GOALS)))
-include $(DEPFILES)
endif
endif
# Local Variables:
# mode: Makefile
# End:
|