generated file target
[openafs.git] / src / update / Makefile.in
index 4ff7bef..03b2530 100644 (file)
@@ -5,28 +5,30 @@
 # License.  For details, see the LICENSE file in the top-level source
 # directory or online at http://www.openafs.org/dl/license10.html
 
-DESTDIR=@DESTDIR@
-SRCDIR=@SRCDIR@
-TOP_SRCDIR=@TOP_SRCDIR@
-SYS_NAME=@AFS_SYSNAME@
+srcdir=@srcdir@
+include @TOP_OBJDIR@/src/config/Makefile.config
+INSTALL = @INSTALL@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
-SHELL = /bin/sh
+LIBS=${TOP_LIBDIR}/libauth.a \
+       ${TOP_LIBDIR}/librxkad.a \
+       ${TOP_LIBDIR}/libdes.a \
+       ${TOP_LIBDIR}/librx.a \
+       ${TOP_LIBDIR}/libsys.a \
+       ${TOP_LIBDIR}/librx.a \
+       ${TOP_LIBDIR}/liblwp.a \
+       ${TOP_LIBDIR}/libcom_err.a \
+       ${TOP_LIBDIR}/util.a
 
-include ../config/Makefile.${SYS_NAME}
+all: upserver upclient
 
-LIBRX=${SRCDIR}/lib/librx.a
-LIBS = ${SRCDIR}/lib/afs/libauth.a ${SRCDIR}/lib/librxkad.a \
-       ${SRCDIR}/lib/libdes.a ${LIBRX} ${SRCDIR}/lib/liblwp.a \
-       ${SRCDIR}/lib/afs/libcom_err.a ${SRCDIR}/lib/afs/util.a \
-       ${SRCDIR}/lib/afs/libsys.a 
-CFLAGS= ${DBUG}  -I${SRCDIR}/include -I${TOP_SRCDIR}/config ${XCFLAGS}
-
-PROGS=upclient upserver
-
-include ../config/Makefile.version
-
-all:  ${PROGS}
+generated: update.cs.c update.ss.c update.xdr.c update.h
 
+#
+# Build targets
+#
 upclient: client.o update.cs.o utils.o ${LIBS} 
        ${CC} ${CFLAGS} -o upclient client.o update.cs.o utils.o ${LIBS} ${XLIBS}
 
@@ -37,13 +39,40 @@ utils.o: utils.c update.h global.h
 
 client.o server.o: update.h global.h AFS_component_version_number.c
 
-update.cs.c update.ss.c update.er.c update.h: update.xg
-       ${SRCDIR}/bin/rxgen update.xg
+update.cs.c: update.xg
+       ${RXGEN} -A -u -C -o $@ ${srcdir}/update.xg
+
+update.ss.c: update.xg
+       ${RXGEN} -A -S -o $@ ${srcdir}/update.xg
+
+update.xdr.c: update.xg
+       ${RXGEN} -A -c -o $@ ${srcdir}/update.xg
+
+update.h: update.xg
+       ${RXGEN} -A -u -h -o $@ ${srcdir}/update.xg
+
+update.cs.c: update.h
+update.ss.c: update.h
+update.er.c: update.h
+
+#
+# Installation targets
+#
+install: upserver upclient
+       ${INSTALL} -d ${DESTDIR}${afssrvlibexecdir}
+       ${INSTALL_PROGRAM} upserver ${DESTDIR}${afssrvlibexecdir}/upserver
+       ${INSTALL_PROGRAM} upclient ${DESTDIR}${afssrvlibexecdir}/upclient
+
+dest: upserver upclient
+       ${INSTALL} -d ${DEST}/root.server/usr/afs/bin
+       ${INSTALL_PROGRAM} upserver ${DEST}/root.server/usr/afs/bin/upserver
+       ${INSTALL_PROGRAM} upclient ${DEST}/root.server/usr/afs/bin/upclient
+
+#
+# Misc. targets
+#
 clean: 
-       rm -f upclient upserver *.o update.ss.c update.cs.c update.xdr.c update.h core\
+       $(RM) -f *.o upclient upserver update.ss.c update.cs.c update.xdr.c update.h core \
        AFS_component_version_number.c
 
-system: install
-install : all
-       ${INSTALL} upserver ${DESTDIR}root.server/usr/afs/bin
-       ${INSTALL} upclient ${DESTDIR}root.server/usr/afs/bin
+include ../config/Makefile.version