aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in11
1 files changed, 8 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index b4933439c..5ae9a3a54 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -49,6 +49,7 @@ clean:
49 rm -f test/utils/index.html* 49 rm -f test/utils/index.html*
50 rm -f test/utils/lstesting 50 rm -f test/utils/lstesting
51 cd test/compile; ./compile.sh --clean; cd ../.. 51 cd test/compile; ./compile.sh --clean; cd ../..
52 cd test/dist-compile; ./compile.sh --clean; cd ../..
52 53
53distclean: clean 54distclean: clean
54 for dir in $(APPS); do \ 55 for dir in $(APPS); do \
@@ -249,6 +250,7 @@ dist:
249 cd $(NAME)-$(VERSION); mkdir -p test; cp -a ../test/apps-x11 test/.; cd .. 250 cd $(NAME)-$(VERSION); mkdir -p test; cp -a ../test/apps-x11 test/.; cd ..
250 cd $(NAME)-$(VERSION); mkdir -p test; cp -a ../test/firemon test/.; cd .. 251 cd $(NAME)-$(VERSION); mkdir -p test; cp -a ../test/firemon test/.; cd ..
251 cd $(NAME)-$(VERSION); mkdir -p test; cp -a ../test/compile test/.; cd .. 252 cd $(NAME)-$(VERSION); mkdir -p test; cp -a ../test/compile test/.; cd ..
253 cd $(NAME)-$(VERSION); mkdir -p test; cp -a ../test/dist-compile test/.; cd ..
252 cd $(NAME)-$(VERSION); rm -fr `find . -name .svn`; rm -fr $(NAME)-$(VERSION); cd .. 254 cd $(NAME)-$(VERSION); rm -fr `find . -name .svn`; rm -fr $(NAME)-$(VERSION); cd ..
253 tar -cjvf $(NAME)-$(VERSION).tar.bz2 $(NAME)-$(VERSION) 255 tar -cjvf $(NAME)-$(VERSION).tar.bz2 $(NAME)-$(VERSION)
254 rm -fr $(NAME)-$(VERSION) 256 rm -fr $(NAME)-$(VERSION)
@@ -256,6 +258,12 @@ dist:
256deb: dist 258deb: dist
257 ./mkdeb.sh $(NAME) $(VERSION) 259 ./mkdeb.sh $(NAME) $(VERSION)
258 260
261github-compile:
262 cd test/compile; ./compile.sh
263
264dist-compile: dist
265 cd test/dist-compile; ./compile.sh $(NAME)-$(VERSION)
266
259.PHONY: rpms 267.PHONY: rpms
260rpms: 268rpms:
261 ./platform/rpm/mkrpm.sh $(NAME) $(VERSION) 269 ./platform/rpm/mkrpm.sh $(NAME) $(VERSION)
@@ -286,8 +294,5 @@ test-utils:
286test-environment: 294test-environment:
287 cd test/environment; ./environment.sh | grep TESTING 295 cd test/environment; ./environment.sh | grep TESTING
288 296
289github-compile:
290 cd test/compile; ./compile.sh
291
292test: test-profiles test-utils test-environment test-apps test-apps-x11 297test: test-profiles test-utils test-environment test-apps test-apps-x11
293 echo "TEST COMPLETE" 298 echo "TEST COMPLETE"