From dfdd4866dbe21b92d6f31bbe9cfda7201d1078ca Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sun, 21 Oct 2007 18:31:30 +0200 Subject: add stub Makefile to easy building with emacs --- .gitignore | 2 +- src/Makefile | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 src/Makefile diff --git a/.gitignore b/.gitignore index 4f54e09..ddf1ace 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ +./Makefile ABOUT-NLS ChangeLog -Makefile Makefile.in aclocal.m4 autom4te.cache diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..7c8875f --- /dev/null +++ b/src/Makefile @@ -0,0 +1,13 @@ +# This is a dirty trick just to ease compilation with emacs +# +# This file is not intended to be distributed or anything +# +# So: don't touch it, even better ignore it! + +all: + $(MAKE) -C .. + +clean: + $(MAKE) -C .. clean + +.PHONY: all clean -- cgit