File: Makefile

package info (click to toggle)
librabbitmq 0.0.1.hg216-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,912 kB
  • sloc: sh: 10,131; ansic: 4,103; xml: 692; python: 614; makefile: 116
file content (8 lines) | stat: -rw-r--r-- 144 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
all:
	echo "Please select a target from the Makefile."

clean:
	rm -f *.pyc

distclean: clean
	find . -regex '.*\(~\|#\|\.swp\)' -exec rm {} \;