Skip to content
Snippets Groups Projects
Makefile 486 B
Newer Older
.DEFAULT_GOAL: clean

.PHONY: help clean

help:
	@echo " "
	@echo " Usage:"
	@echo "   make clean          # remove temporary (log) files"
	@echo " "

clean: 

# -------------------
	/bin/rm -f jb.[0-9]*.jb
	/bin/rm -f jb.[0-9]*.rc
	/bin/rm -f jb.[0-9]*.log
	/bin/rm -f *.pyc
	/bin/rm -f */*/jb.[0-9]*.rc
	/bin/rm -f */*/jb.[0-9]*.jb
	/bin/rm -f */*/jb.[0-9]*.log
	/bin/rm -f */*/*.pyc
	/bin/rm -f das.[0-9]*.log
	/bin/rm -f *.o*
	/bin/rm -f *.po*
	/bin/rm -f *.e*
	/bin/rm -f *.pe*