53 lines
1.2 KiB
Makefile
53 lines
1.2 KiB
Makefile
SHELL=/bin/sh
|
|
|
|
# makefile for EDAC program and module
|
|
#
|
|
# the EDAC source code is not included in the public distribution.
|
|
# please obtain it from the original author,
|
|
# copy it to this directory,
|
|
# and apply the edac_all.patch patch before compilation.
|
|
#
|
|
# see the top-level makefile for additional information.
|
|
|
|
.SUFFIXES:
|
|
.SUFFIXES: .c .cpp .cxx .exe .f .h .i .o .py .pyf .so
|
|
.PHONY: all clean edac
|
|
|
|
FC=gfortran
|
|
FCCOPTS=
|
|
F2PY=f2py
|
|
F2PYOPTS=
|
|
CC=g++
|
|
CCOPTS=-Wno-write-strings
|
|
SWIG=swig
|
|
SWIGOPTS=
|
|
PYTHON=python
|
|
PYTHONOPTS=
|
|
|
|
all: edac
|
|
|
|
edac: edac.exe _edac.so edac.py
|
|
|
|
edac.exe: edac_all.cpp
|
|
$(CC) $(CCOPTS) -o edac.exe edac_all.cpp
|
|
|
|
edac_wrap.cxx: edac_all.cpp edac.i
|
|
$(SWIG) $(SWIGOPTS) -c++ -python edac.i
|
|
|
|
edac.py _edac.so: edac_wrap.cxx setup.py
|
|
$(PYTHON) $(PYTHONOPTS) setup.py build_ext --inplace
|
|
|
|
revision.py: _edac.so
|
|
git log --pretty=format:"code_rev = 'Code revision %h, %ad'" --date=iso -1 > $@ || echo "code_rev = 'Code revision unknown, "`date +"%F %T %z"`"'" > $@
|
|
echo "" >> revision.py
|
|
|
|
revision.txt: _edac.so edac.exe
|
|
git log --pretty=format:"Code revision %h, %ad" --date=iso -1 > $@ || echo "Code revision unknown, "`date +"%F %T %z"` > $@
|
|
echo "" >> revision.txt
|
|
|
|
clean:
|
|
rm -f *.so *.o *.exe
|
|
rm -f *_wrap.cxx
|
|
rm -f revision.py
|
|
rm -f revision.txt
|