diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2018-11-14 20:21:46 +0100 |
---|---|---|
committer | Ulrich Sibiller <uli42@gmx.de> | 2018-11-14 20:21:46 +0100 |
commit | 623a74ae1c2d32edbc9d0106e9fbdc437342f8b3 (patch) | |
tree | fc3c9a36b07685ce6e6df7206379374ab72853cf | |
parent | 071e41b6c70f94eabf3fa34f76c28227d62cec7f (diff) | |
download | nx-libs-623a74ae1c2d32edbc9d0106e9fbdc437342f8b3.tar.gz nx-libs-623a74ae1c2d32edbc9d0106e9fbdc437342f8b3.tar.bz2 nx-libs-623a74ae1c2d32edbc9d0106e9fbdc437342f8b3.zip |
Makefile: fix (dist)clean dependencies
ensure that we have all the required def files
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -61,14 +61,14 @@ NX_XTRANS_HEADERS = \ all: build -clean: +clean: version imakeconfig test -f nxcomp/Makefile && ${MAKE} -C nxcomp clean || true test -f nxproxy/Makefile && ${MAKE} -C nxproxy clean || true test -f nx-X11/lib/Makefile && ${MAKE} -C nx-X11/lib clean || true test -f nxcompshad/Makefile && ${MAKE} -C nxcompshad clean || true test -d nx-X11 && ${MAKE} clean-env || true -distclean: clean +distclean: clean version imakeconfig test -f nxcomp/Makefile && ${MAKE} -C nxcomp distclean || true test -f nxproxy/Makefile && ${MAKE} -C nxproxy distclean || true test -f nx-X11/lib/Makefile && ${MAKE} -C nx-X11/lib distclean || true |