Add stub Makefiles to allow subdir make calls

This commit is contained in:
Quentin Glidic
2012-06-17 14:37:07 +02:00
parent 66adb62e1f
commit e452acb30e
9 changed files with 58 additions and 233 deletions

10
src/Makefile Normal file
View File

@ -0,0 +1,10 @@
all:
$(MAKE) -C .. i3
install:
$(MAKE) -C .. install-i3
clean:
$(MAKE) -C .. clean-i3
.PHONY: all install clean