From: Alan T. DeKok Date: Tue, 31 Jan 2012 11:39:10 +0000 (+0100) Subject: Removed unused file X-Git-Tag: release_3_0_0_beta0~345 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=01a3962ca45fd8ce03f38ddff97811a1a35be0a3;p=thirdparty%2Ffreeradius-server.git Removed unused file --- diff --git a/scripts/main.mk b/scripts/main.mk deleted file mode 100644 index 41849707fb4..00000000000 --- a/scripts/main.mk +++ /dev/null @@ -1,44 +0,0 @@ -# We don't use boilermake here because we want to run the test-app -# as a self-contained system that runs boilermake. -# - -all: run-tests - -APP := ./test-app/build/bin/talk - -.PHONY: run-tests -run-tests: - ${MAKE} clean - ${MAKE} -C test-app/ - ${APP} > found.txt - diff expected.txt found.txt - ${MAKE} -C test-app/ DESTDIR=`pwd`/R INSTALL=`pwd`/install-sh install - find R/* -print > found-install.txt - diff expected-install.txt found-install.txt - ${APP} > found.txt - diff expected.txt found.txt - ${MAKE} -C test-app/ DESTDIR=`pwd`/R INSTALL=`pwd`/install-sh uninstall - find R/* -print > found-install.txt - diff empty-install.txt found-install.txt - ${MAKE} clean - ${MAKE} -C test-app/ LIBTOOL=JLIBTOOL DESTDIR=`pwd`/R INSTALL=`pwd`/install-sh all - ${APP} > found.txt - diff expected.txt found.txt - ${MAKE} -C test-app/ LIBTOOL=JLIBTOOL DESTDIR=`pwd`/R INSTALL=`pwd`/install-sh install -# don't do "find", as we have *.la files installed, rather than *.a - ${APP} > found.txt - diff expected.txt found.txt - ${MAKE} clean - rm -rf R found found-install.txt - -clean: clean.local - -clean.local: - ${MAKE} -C test-app/ clean - ${MAKE} -C test-app/ LIBTOOL=x clean - rm -rf ./R *~ found.txt found-install.txt - -check-legacy: - @grep '$$(' `find test-app/build/make -type f -name "*\.mk" -print` || true - @grep ' /' `find test-app/build/make -type f -name "*\.mk" -print` || true - @grep ' build' `find test-app/build/make -type f -name "*\.mk" -print` || true