blob: 7c8875f39787a70e18f9fbeba1e6ce0c63a6addd (
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
|