Makefile
author Markus Bröker <mbroeker@largo.dyndns.tv>
Tue, 16 Feb 2010 23:45:45 +0100
changeset 46 08ad49ca1b4e
parent 43 07afbd7a1567
child 52 c9401e6a62cb
permissions -rw-r--r--
mcbot version 0.99-3 committer: Markus Bröker <mbroeker@largo.homelinux.org>

MAKE=make --no-print-directory
CMAKE=cmake
RMDIR=rm -rf
RM=rm -f

all: build

build: build/Makefile
	@$(MAKE) -C build

prepare:
	@if [ ! -d build ]; then mkdir build; fi

build/Makefile: prepare
	cd build && $(CMAKE) ../src

.PHONY: distclean debclean prepare beauty

clean: build/Makefile
	@$(MAKE) -C build clean

deb: debclean
	dpkg-buildpackage -r

debclean:
	fakeroot debian/rules clean

distclean:
	$(RMDIR) build debian/mcbot
	$(RM) locale/de/LC_MESSAGES/mcbot.mo

install: build/Makefile
	$(MAKE) -C build install

beauty:
	find -name '*.[ch]' -exec indent {} \;
	find -name '*.[ch]' -exec eraser {} \;
	find -name '*~' -exec rm -f {} \;