blob: 316beb72d1ef7a228503fc1ef0550d4fa77e0dff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|