summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2007-10-21 18:31:30 +0200
committerLennart Poettering <lennart@poettering.net>2007-10-21 18:31:30 +0200
commitdfdd4866dbe21b92d6f31bbe9cfda7201d1078ca (patch)
treeaf68f38c3cbb35f46c4e8f3d76285b4c4599dcb0
parentc241a7d94b9c4d64122ca380ce42c48a338798c1 (diff)
add stub Makefile to easy building with emacs
-rw-r--r--.gitignore2
-rw-r--r--src/Makefile13
2 files changed, 14 insertions, 1 deletions
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