check curses-libs by configure
[openafs.git] / src / afsmonitor / Makefile.in
index 16cdc4d..acc7820 100644 (file)
@@ -7,14 +7,12 @@
 
 srcdir=@srcdir@
 include @TOP_OBJDIR@/src/config/Makefile.config
+include @TOP_OBJDIR@/src/config/Makefile.lwp
 
-
-CFLAGS=$(DBG) -I. \
-       -I${TOP_OBJDIR}/src/config \
-       -I${TOP_INCDIR} \
-       -I${TOP_INCDIR}/afs \
-       ${XCFLAGS}
-LDFLAGS = ${XLDFLAGS}
+INSTALL = @INSTALL@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
 INCLS=${TOP_INCDIR}/afs/gtxobjects.h \
        ${TOP_INCDIR}/afs/gtxwindows.h \
@@ -42,7 +40,7 @@ LIBS=${TOP_LIBDIR}/libxstat_fs.a \
        ${TOP_LIBDIR}/libsys.a \
        ${TOP_LIBDIR}/util.a
 
-EXTRA_LIBS=${TXLIBS} ${TOP_LIBDIR}/libtermlib.a  ${XLIBS}
+EXTRA_LIBS=${LIB_curses} ${XLIBS}
 
 all: afsmonitor
 
@@ -51,28 +49,22 @@ afsmon-win.o: afsmon-win.c ${INCLS}
 afsmonitor.o: afsmonitor.c ${INCLS} AFS_component_version_number.c
 
 afsmonitor: afsmonitor.o afsmon-win.o afsmon-output.o ${LIBS}
-       ${CC} ${LDFLAGS} -o afsmonitor afsmonitor.o afsmon-win.o \
-               afsmon-output.o ${LIBS} ${EXTRA_LIBS}
+       $(AFS_LDRULE) afsmonitor.o afsmon-win.o afsmon-output.o \
+               ${LIBS} $(LIB_roken) ${EXTRA_LIBS}
 
 afsmon-parselog:  afsmon-parselog.o ${LIBS}
-       ${CC} ${CFLAGS} -o afsmon-parselog afsmon-parselog.c \
-               ${LIBS} ${EXTRA_LIBS}
+       $(AFS_LDRULE) afsmon-parselog.c \
+               ${LIBS} $(LIB_roken) ${EXTRA_LIBS}
+
+install: afsmonitor
+       ${INSTALL} -d ${DESTDIR}${bindir}
+       ${INSTALL_PROGRAM} afsmonitor ${DESTDIR}${bindir}/afsmonitor
 
-#
-# Misc others
-#
-install:  ${DESTDIR}${bindir}/afsmonitor
+dest: afsmonitor
+       ${INSTALL} -d ${DEST}/bin
+       ${INSTALL_PROGRAM} afsmonitor ${DEST}/bin/afsmonitor
 
 clean:
        $(RM) -f *.o afsmonitor AFS_component_version_number.c
 
 include ../config/Makefile.version
-${DEST}/bin/afsmonitor: afsmonitor
-       ${INSTALL} $? $@
-
-${DESTDIR}${bindir}/afsmonitor: afsmonitor
-       ${INSTALL} $? $@
-
-
-dest:  ${DEST}/bin/afsmonitor
-