aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2011-01-14 14:19:40 +0000
committerRob Austein <sra@hactrn.net>2011-01-14 14:19:40 +0000
commit4b77848f92101ba05ac564dc3f91f3600661423f (patch)
treec2afa4d2a23a5ef745822bbd19f463e0375c6621
parent70095b82dd62f9187f4f90b047f3535a2951a03f (diff)
Oops, didn't finish updating makefile targets after merging into rpki
package. svn path=/pow/Makefile.in; revision=3609
-rw-r--r--pow/Makefile.in8
1 files changed, 5 insertions, 3 deletions
diff --git a/pow/Makefile.in b/pow/Makefile.in
index 6cf29b76..d120b037 100644
--- a/pow/Makefile.in
+++ b/pow/Makefile.in
@@ -8,14 +8,16 @@ PYTHON = @PYTHON@
abs_top_srcdir = @abs_top_srcdir@
abs_top_builddir = @abs_top_builddir@
-all: POW/_POW.so
+TARGET = ../rpkid/rpki/POW/_POW.so
-POW/_POW.so: POW.c
+all: ${TARGET}
+
+${TARGET}: POW.c
AC_CFLAGS='${CFLAGS}' AC_LDFLAGS='${LDFLAGS}' AC_LIBS='${LIBS}' ${PYTHON} build.py
rm -f *.o
clean:
- rm -f *.o ../rpkid/rpki/POW/_POW.so
+ rm -f *.o ${TARGET}
install:
@echo Not attempting to install modified POW, if you want that, do it yourself