blob: ebb4dee7aef837fbb7f4e895531325b259fb1574 (
plain) (
blame)
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
|
# $Id$
CFLAGS = @CFLAGS@
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
PYTHON = @PYTHON@
OBJCOPY = @OBJCOPY@
abs_top_srcdir = @abs_top_srcdir@
abs_top_builddir = @abs_top_builddir@
all: POW/_POW.so
POW/_POW.so: POW.c
AC_CFLAGS='${CFLAGS}' AC_LDFLAGS='${LDFLAGS}' AC_LIBS='${LIBS}' AC_OBJCOPY='${OBJCOPY}' ${PYTHON} build.py
rm -f *.o
clean:
rm -f *.o POW/_POW.so
install:
@echo Not attempting to install modified POW, if you want that, do it yourself
test:
@true
distclean: clean
rm -f Makefile
|