diff options
author | Karl Ramm <kcr@1ts.org> | 2010-11-06 14:41:52 -0400 |
---|---|---|
committer | Karl Ramm <kcr@1ts.org> | 2011-10-23 11:37:06 -0400 |
commit | 9babe1ad287308b003641e1fc152aff808b95d86 (patch) | |
tree | b16588358479a8ddbb8687be3ecce86329ff25f5 /zhm | |
parent | 058d831196fee7af340026776798eeac5844836a (diff) |
Retool our use of configure such that we track it like everyone else does
i.e. don't keep generated or foreign stuff in our source tree.
As a side effect, this lets us use a libtool, etc. from this century
Diffstat (limited to 'zhm')
-rw-r--r-- | zhm/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zhm/Makefile.in b/zhm/Makefile.in index 04268a8..47c5f1b 100644 --- a/zhm/Makefile.in +++ b/zhm/Makefile.in @@ -1,4 +1,4 @@ -SHELL = /bin/sh +SHELL=@SHELL@ prefix=@prefix@ exec_prefix=@exec_prefix@ @@ -33,7 +33,7 @@ OBJS= timer.o queue.o zhm.o zhm_client.o zhm_server.o all: zhm zhm: ${OBJS} ${LIBZEPHYR} - ${LIBTOOL} --mode=link ${CC} ${LDFLAGS} -o $@ ${OBJS} ${LIBZEPHYR} ${HESIOD_LIBS} + ${LIBTOOL} --mode=link ${CC} ${LDFLAGS} -o $@ ${OBJS} ${LIBZEPHYR} ${HESIOD_LIBS} -lcom_err .c.o: ${CC} -c ${ALL_CFLAGS} $< |