summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2012-04-18 15:10:59 +0200
committerLennart Poettering <lennart@poettering.net>2012-04-18 15:10:59 +0200
commit5187c478439e34cdacf8bc9c2648fb7cb7f30eb3 (patch)
tree24afd84c279a53f4b21e437f19450bd6ab893da0
parentee9d32f92f7a08a9eb74b678820aeaebbc47c5b3 (diff)
build-sys: add makefile stub
-rw-r--r--src/Makefile30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
new file mode 100644
index 0000000..7d912b4
--- /dev/null
+++ b/src/Makefile
@@ -0,0 +1,30 @@
+# -*- Mode: makefile; indent-tabs-mode: t -*-
+#
+# This file is part of libminidump.
+#
+# Copyright 2012 Lennart Poettering
+#
+# libminidump is free software; you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as published by
+# the Free Software Foundation; either version 2.1 of the License, or
+# (at your option) any later version.
+#
+# libminidump is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public License
+# along with libminidump; If not, see <http://www.gnu.org/licenses/>.
+
+# This file is a dirty trick to simplify compilation from within
+# emacs. This file is not intended to be distributed. So, don't touch
+# it, even better ignore it!
+
+all:
+ $(MAKE) -C ..
+
+clean:
+ $(MAKE) -C .. clean
+
+.PHONY: all clean